From b9661afd506c7c5f43d01c092ce313f33e730892 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 12 May 2013 13:34:15 -0400 Subject: Fix AttributeError on underscore-prefixed method name. --HG-- branch : distribute extra : rebase_source : 8ceb2c2f067a60225bb83817a8584d93f489a3d0 --- pkg_resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg_resources.py') 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)) -- cgit v1.2.1