Commit 8a115491 authored by Jason R. Coombs's avatar Jason R. Coombs

Neglected to remove another reference to the global 'working_set'

parent 0e44d6b2
...@@ -456,7 +456,7 @@ class WorkingSet(object): ...@@ -456,7 +456,7 @@ class WorkingSet(object):
# by starting with an empty path # by starting with an empty path
ws = cls([]) ws = cls([])
reqs = parse_requirements(req_spec) reqs = parse_requirements(req_spec)
dists = working_set.resolve(reqs, Environment()) dists = ws.resolve(reqs, Environment())
for dist in dists: for dist in dists:
ws.add(dist) ws.add(dist)
......
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