[Checkins] SVN: zc.buildout/trunk/src/zc/buildout/easy_install.py Minor output tweaks.

Jim Fulton jim at zope.com
Fri Sep 1 19:54:28 EDT 2006


Log message for revision 69923:
  Minor output tweaks.
  

Changed:
  U   zc.buildout/trunk/src/zc/buildout/easy_install.py

-=-
Modified: zc.buildout/trunk/src/zc/buildout/easy_install.py
===================================================================
--- zc.buildout/trunk/src/zc/buildout/easy_install.py	2006-09-01 15:01:51 UTC (rev 69922)
+++ zc.buildout/trunk/src/zc/buildout/easy_install.py	2006-09-01 23:54:27 UTC (rev 69923)
@@ -129,7 +129,7 @@
 
     # 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 @@
         # 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 @@
     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:



More information about the Checkins mailing list