[Zodb-checkins] SVN: zodbbench/trunk/zodbbench/utils.py report(): On third thought, newlines in sys.version are

Tim Peters tim.one at comcast.net
Fri Oct 7 17:04:21 EDT 2005


Log message for revision 38908:
  report():  On third thought, newlines in sys.version are
  plain silly.  Nuke 'em.
  

Changed:
  U   zodbbench/trunk/zodbbench/utils.py

-=-
Modified: zodbbench/trunk/zodbbench/utils.py
===================================================================
--- zodbbench/trunk/zodbbench/utils.py	2005-10-07 21:00:27 UTC (rev 38907)
+++ zodbbench/trunk/zodbbench/utils.py	2005-10-07 21:04:21 UTC (rev 38908)
@@ -122,7 +122,7 @@
         print "ZODB:", ZODB.__version__
         print "     ", os.path.dirname(os.path.dirname(ZODB.__file__))
 
-        version = sys.version.replace("\n", "\n        ")
+        version = sys.version.replace("\n", " ")
         print "Python:", version
         print "       ", sys.executable
         print "       ", sys.platform



More information about the Zodb-checkins mailing list