diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-04-05 13:36:59 +0100 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-04-05 13:36:59 +0100 |
| commit | a31716f5a86061d7409b8c08154d3b52ff324efd (patch) | |
| tree | 0c7262e60f1eca5f841568e96fd62f89949aa15d /pkg_resources | |
| parent | 5c36cd3890dad731a0e3d9764345377406770c31 (diff) | |
| download | python-setuptools-git-a31716f5a86061d7409b8c08154d3b52ff324efd.tar.gz | |
Remove fallback value until there's something that explains or requires it.
Diffstat (limited to 'pkg_resources')
| -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 c3e3e96c..08677719 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -861,7 +861,7 @@ class WorkingSet(object): result = [] if req in extra_req_mapping: - for extra in extra_req_mapping[req] or ['']: + for extra in extra_req_mapping[req]: result.append(req.marker.evaluate({'extra': extra})) else: result.append(req.marker.evaluate()) |
