diff options
| -rw-r--r-- | pkg_resources/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index cecf7691..af65c249 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -2687,7 +2687,7 @@ class Distribution(object): return self.__dep_map def _build_dep_map(self): - dm = {None: []} + dm = {} for name in 'requires.txt', 'depends.txt': for extra, reqs in split_sections(self._get_metadata(name)): if extra: |
