summaryrefslogtreecommitdiff
path: root/pkg_resources.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-12 13:34:15 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-12 13:34:15 -0400
commitb9661afd506c7c5f43d01c092ce313f33e730892 (patch)
treecfd9e56ec9832a8a5be6924b5d15476e474907d3 /pkg_resources.py
parentf0a3905357e596c9a2a85358fda0f41384ff3d39 (diff)
downloadpython-setuptools-git-b9661afd506c7c5f43d01c092ce313f33e730892.tar.gz
Fix AttributeError on underscore-prefixed method name.
--HG-- branch : distribute extra : rebase_source : 8ceb2c2f067a60225bb83817a8584d93f489a3d0
Diffstat (limited to 'pkg_resources.py')
-rw-r--r--pkg_resources.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources.py b/pkg_resources.py
index 2ec645d3..f8de449e 100644
--- a/pkg_resources.py
+++ b/pkg_resources.py
@@ -1422,7 +1422,7 @@ class ZipProvider(EggProvider):
self.egg_name, self._parts(zip_path)
)
- if self.is_current(real_path, zip_path):
+ if self._is_current(real_path, zip_path):
return real_path
outf, tmpnam = _mkstemp(".$extract", dir=os.path.dirname(real_path))