aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2007-02-23 20:29:58 +0000
committerPJ Eby <distutils-sig@python.org>2007-02-23 20:29:58 +0000
commitfb98a95e9badb23765ea520fd5bd9e30d0f1fe4a (patch)
tree605688714635990d2fb8fc117ca69a91eedf79ea /pkg_resources.py
parentaba13220b952cd60df2a8f7cf44394d28a5f1814 (diff)
downloadexternal_python_setuptools-fb98a95e9badb23765ea520fd5bd9e30d0f1fe4a.tar.gz
external_python_setuptools-fb98a95e9badb23765ea520fd5bd9e30d0f1fe4a.tar.bz2
external_python_setuptools-fb98a95e9badb23765ea520fd5bd9e30d0f1fe4a.zip
Added ``--local-snapshots-ok`` flag, to allow building eggs from
projects installed using ``setup.py develop``. (backport from trunk) --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053877
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 bfe92e3a..955e5c17 100644
--- a/pkg_resources.py
+++ b/pkg_resources.py
@@ -1676,7 +1676,7 @@ def find_on_path(importer, path_item, only=False):
if not line.strip(): continue
for item in find_distributions(os.path.join(path_item,line.rstrip())):
yield item
-
+ break
register_finder(ImpWrapper,find_on_path)
_namespace_handlers = {}