From 46c2eb7aed62bd00691ceb557a071e1709d8dc88 Mon Sep 17 00:00:00 2001 From: jim <jim@62d5b8a3-27da-0310-9561-8e5933582275> Date: Fri, 1 Sep 2006 23:54:27 +0000 Subject: [PATCH] Minor output tweaks. git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@69923 62d5b8a3-27da-0310-9561-8e5933582275 --- src/zc/buildout/easy_install.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zc/buildout/easy_install.py b/src/zc/buildout/easy_install.py index 77b8563a..dfb2e57e 100644 --- a/src/zc/buildout/easy_install.py +++ b/src/zc/buildout/easy_install.py @@ -129,7 +129,7 @@ def _satisfied(req, env, dest, executable, index, links): # Check if we have the upper limit if maxv is not None and best_we_have.version == maxv: - logger.debug('We have the best distributon that satisfies %s', + logger.debug('We have the best distributon that satisfies\n%s', req) return best_we_have @@ -153,7 +153,7 @@ def _satisfied(req, env, dest, executable, index, links): # Let's find out if we already have the best available: if best_we_have >= best_available: # Yup. Use it. - logger.debug('We have the best distributon that satisfies %s', req) + logger.debug('We have the best distributon that satisfies\n%s', req) return best_we_have return None @@ -373,7 +373,7 @@ def scripts(reqs, working_set, executable, dest, projects = [r.project_name for r in reqs] path = [dist.location for dist in working_set] path.extend(extra_paths) - path = repr(path)[1:-1].replace(',', ',\n ') + path = repr(path)[1:-1].replace(', ', ',\n ') generated = [] for dist in working_set: -- 2.30.9