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
commit95bfa590469e79a2791f0124b7933783c58d00ae (patch)
treee67f69fbd45e1fbc24d349d1feb8f4be2915595c /pkg_resources.py
parentf705a77a3c014f042f115544b30d65547b5b954e (diff)
downloadpython-setuptools-bitbucket-95bfa590469e79a2791f0124b7933783c58d00ae.tar.gz
Fix AttributeError on underscore-prefixed method name.
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))