summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2007-02-23 19:22:54 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2007-02-23 19:22:54 +0000
commit420aa492ec924a0c7f436f92c63ba328a7c85ee7 (patch)
tree0342cf8ca9c3a1c05a924f4b3174b2650716f546 /setuptools/command
parentdced57d20db7260fbe8123cd96a734271994c3c6 (diff)
downloadpython-setuptools-420aa492ec924a0c7f436f92c63ba328a7c85ee7.tar.gz
Indicate when dependency processing is finished, so that you can tell
which dependencies go with what. (Suggested by Ian Bicking) git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@53868 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 8228777..9b2fcca 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -532,6 +532,7 @@ Please make the appropriate changes for your system and try again.
for dist in distros:
if dist.key not in self.installed_projects:
self.easy_install(dist.as_requirement())
+ log.info("Finished processing dependencies for %s", requirement)
def should_unzip(self, dist):
if self.zip_ok is not None:
@@ -571,7 +572,6 @@ Please make the appropriate changes for your system and try again.
-
def install_script(self, dist, script_name, script_text, dev_path=None):
"""Generate a legacy script wrapper and install it"""
spec = str(dist.as_requirement())