Commit a31716f5 authored by Jason R. Coombs's avatar Jason R. Coombs

Remove fallback value until there's something that explains or requires it.

parent 5c36cd38
...@@ -861,7 +861,7 @@ class WorkingSet(object): ...@@ -861,7 +861,7 @@ class WorkingSet(object):
result = [] result = []
if req in extra_req_mapping: 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})) result.append(req.marker.evaluate({'extra': extra}))
else: else:
result.append(req.marker.evaluate()) result.append(req.marker.evaluate())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment