You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/05/06 12:06:06 UTC

svn commit: r168585 - /gump/branches/Gump3/pygump/python/gump/plugins/logreporter.py

Author: leosimons
Date: Fri May  6 03:06:04 2005
New Revision: 168585

URL: http://svn.apache.org/viewcvs?rev=168585&view=rev
Log:
More pretty printing/cli updates. I'm done with this now :-)

Modified:
    gump/branches/Gump3/pygump/python/gump/plugins/logreporter.py

Modified: gump/branches/Gump3/pygump/python/gump/plugins/logreporter.py
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/pygump/python/gump/plugins/logreporter.py?rev=168585&r1=168584&r2=168585&view=diff
==============================================================================
--- gump/branches/Gump3/pygump/python/gump/plugins/logreporter.py (original)
+++ gump/branches/Gump3/pygump/python/gump/plugins/logreporter.py Fri May  6 03:06:04 2005
@@ -153,8 +153,12 @@
         
         self.wr('  Project build statistics')
         self.wr('  ==========================================================================')
-        self.wr('      Total | %sFailed | %sPrereq Failed | Skipped | %sSuccess | %sCyclic Dependency%s' % \
-                (ansicolor.Red, ansicolor.Yellow, ansicolor.Green, ansicolor.Bright_Red, ansicolor.Black))
+        self.wr('      Total | %sFailed%s | %sPrereq Failed%s | Skipped%s | %sSuccess%s | %sCyclic Dependency%s' % \
+                (ansicolor.Red, ansicolor.Black,
+                 ansicolor.Yellow, ansicolor.Black,
+                 ansicolor.Green, ansicolor.Black,
+                 ansicolor.Bright_Red,
+                 ansicolor.Black))
         self.wr('      ------|--------|---------------|---------|---------|------------------')
         self.wr('      %5u | %s%6u%s | %s%13u%s | %s%7u%s | %s%7u%s | %s%17u%s' % (total,
                  ansicolor.Red, failed, ansicolor.Black,