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/07/08 15:33:53 UTC

svn commit: r209768 - /gump/branches/Gump3/bin/pylid-0.3/pylid.py

Author: leosimons
Date: Fri Jul  8 06:33:52 2005
New Revision: 209768

URL: http://svn.apache.org/viewcvs?rev=209768&view=rev
Log:
Fix bug in pylid color support

Modified:
    gump/branches/Gump3/bin/pylid-0.3/pylid.py

Modified: gump/branches/Gump3/bin/pylid-0.3/pylid.py
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/bin/pylid-0.3/pylid.py?rev=209768&r1=209767&r2=209768&view=diff
==============================================================================
--- gump/branches/Gump3/bin/pylid-0.3/pylid.py (original)
+++ gump/branches/Gump3/bin/pylid-0.3/pylid.py Fri Jul  8 06:33:52 2005
@@ -346,7 +346,7 @@
                 self.stream.write("%serrors=%d%s" % (Bright_Red, errored, Red))
             self.stream.writeln(")" + Black)
         else:
-            self.stream.writeln(Bright_Green + "OK" + Bright_Red)
+            self.stream.writeln(Bright_Green + "OK" + Black)
         return result
     
 class Tester: