diff options
-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()) |