diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-02-09 14:25:59 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-02-09 14:25:59 -0500 |
commit | 8a1154915bef1dbf5c9b106f1037ae3bdf19749b (patch) | |
tree | ec24f293ef6ae8a39243c789460deca12f1d13ec | |
parent | 0e44d6b2abc8aa8dba6569fe089d49c9359716ac (diff) | |
download | external_python_setuptools-8a1154915bef1dbf5c9b106f1037ae3bdf19749b.tar.gz external_python_setuptools-8a1154915bef1dbf5c9b106f1037ae3bdf19749b.tar.bz2 external_python_setuptools-8a1154915bef1dbf5c9b106f1037ae3bdf19749b.zip |
Neglected to remove another reference to the global 'working_set'
-rw-r--r-- | pkg_resources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources.py b/pkg_resources.py index 9e98e671..b0acfcdf 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -456,7 +456,7 @@ class WorkingSet(object): # by starting with an empty path ws = cls([]) reqs = parse_requirements(req_spec) - dists = working_set.resolve(reqs, Environment()) + dists = ws.resolve(reqs, Environment()) for dist in dists: ws.add(dist) |