Commit 17826cc5 authored by Tarek Ziade's avatar Tarek Ziade

fixed the edit mode when its used by setuptools fixes #174

--HG--
branch : distribute
extra : rebase_source : be43431f85dd946fc44128bb4967844e43885ea9
parent 91cb8c7f
......@@ -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
......
......@@ -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
......
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