Commit b9661afd authored by Jason R. Coombs's avatar Jason R. Coombs

Fix AttributeError on underscore-prefixed method name.

--HG--
branch : distribute
extra : rebase_source : 8ceb2c2f067a60225bb83817a8584d93f489a3d0
parent f0a39053
...@@ -1422,7 +1422,7 @@ class ZipProvider(EggProvider): ...@@ -1422,7 +1422,7 @@ class ZipProvider(EggProvider):
self.egg_name, self._parts(zip_path) 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 return real_path
outf, tmpnam = _mkstemp(".$extract", dir=os.path.dirname(real_path)) outf, tmpnam = _mkstemp(".$extract", dir=os.path.dirname(real_path))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment