summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))