diff options
author | PJ Eby <distutils-sig@python.org> | 2007-02-23 19:23:57 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2007-02-23 19:23:57 +0000 |
commit | ae8b6ede870d8d62c3d08b9697a92f75e6f99d9c (patch) | |
tree | 138a219be5cd97859c18f7b884e710ac80f66160 /setuptools/command/easy_install.py | |
parent | 877544db61f93a08d37b6dfba2cc7f54b15835a9 (diff) | |
download | external_python_setuptools-ae8b6ede870d8d62c3d08b9697a92f75e6f99d9c.tar.gz external_python_setuptools-ae8b6ede870d8d62c3d08b9697a92f75e6f99d9c.tar.bz2 external_python_setuptools-ae8b6ede870d8d62c3d08b9697a92f75e6f99d9c.zip |
Indicate when dependency processing is finished, so that you can tell
which dependencies go with what. (Suggested by Ian Bicking)
(backport from trunk)
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053869
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 5b7d001d..b8242520 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()) |