aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-04-05 13:36:59 +0100
committerJason R. Coombs <jaraco@jaraco.com>2016-04-05 13:36:59 +0100
commita31716f5a86061d7409b8c08154d3b52ff324efd (patch)
tree0c7262e60f1eca5f841568e96fd62f89949aa15d
parent5c36cd3890dad731a0e3d9764345377406770c31 (diff)
downloadexternal_python_setuptools-a31716f5a86061d7409b8c08154d3b52ff324efd.tar.gz
external_python_setuptools-a31716f5a86061d7409b8c08154d3b52ff324efd.tar.bz2
external_python_setuptools-a31716f5a86061d7409b8c08154d3b52ff324efd.zip
Remove fallback value until there's something that explains or requires it.
-rw-r--r--pkg_resources/__init__.py2
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())