diff options
author | Tarek Ziade <tarek@ziade.org> | 2010-07-15 02:01:09 +0200 |
---|---|---|
committer | Tarek Ziade <tarek@ziade.org> | 2010-07-15 02:01:09 +0200 |
commit | 17826cc55c5fe3435767cea1e7cbb8ca9873e21d (patch) | |
tree | 8c9a7a7e0146fbd95c713e7ddb7aae4200703ba2 | |
parent | 91cb8c7f93b69929938ceb8913ec4bc7bc7dd016 (diff) | |
download | external_python_setuptools-17826cc55c5fe3435767cea1e7cbb8ca9873e21d.tar.gz external_python_setuptools-17826cc55c5fe3435767cea1e7cbb8ca9873e21d.tar.bz2 external_python_setuptools-17826cc55c5fe3435767cea1e7cbb8ca9873e21d.zip |
fixed the edit mode when its used by setuptools fixes #1740.6.14
--HG--
branch : distribute
extra : rebase_source : be43431f85dd946fc44128bb4967844e43885ea9
-rw-r--r-- | CHANGES.txt | 1 | ||||
-rwxr-xr-x | setuptools/command/easy_install.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 93381aad..342ad4bb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -10,6 +10,7 @@ CHANGES * Issue 171: Fixed race condition in unittests cause deadlocks in test suite. * Issue 143: Fixed a lookup issue with easy_install. Thanks to David and Zooko. +* Issue 174: Fixed the edit mode when its used with setuptools itself ------ 0.6.13 diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 2a227196..27fd00c7 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -639,7 +639,8 @@ Please make the appropriate changes for your system and try again. self.update_pth(dist) self.package_index.add(dist) self.local_index.add(dist) - self.install_egg_scripts(dist) + if not self.editable: + self.install_egg_scripts(dist) self.installed_projects[dist.key] = dist log.info(self.installation_report(requirement, dist, *info)) if (dist.has_metadata('dependency_links.txt') and |