aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-02-09 14:25:59 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-02-09 14:25:59 -0500
commit8a1154915bef1dbf5c9b106f1037ae3bdf19749b (patch)
treeec24f293ef6ae8a39243c789460deca12f1d13ec
parent0e44d6b2abc8aa8dba6569fe089d49c9359716ac (diff)
downloadexternal_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.py2
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)