summaryrefslogtreecommitdiff
path: root/pkg_resources
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-11-24 11:27:22 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-11-24 11:27:22 -0500
commit998ceceaeb3dfce1b2b05a82aaf356db54f46de6 (patch)
tree6859a65cd3733bd5f4d2f30c74f4dd40f34e9340 /pkg_resources
parentf05162f5583979a3cc56492b91211cbe54353efa (diff)
downloadpython-setuptools-git-998ceceaeb3dfce1b2b05a82aaf356db54f46de6.tar.gz
Back out 435b1b762fba. The change breaks detection of zip eggs. Reopens #462.
Diffstat (limited to 'pkg_resources')
-rw-r--r--pkg_resources/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py
index 8841ee63..0c024f1b 100644
--- a/pkg_resources/__init__.py
+++ b/pkg_resources/__init__.py
@@ -2288,7 +2288,6 @@ def _is_unpacked_egg(path):
"""
return (
path.lower().endswith('.egg')
- and os.path.isdir(os.path.join(path, 'EGG-INFO'))
)
def _set_parent_ns(packageName):