[Checkins] SVN: zope.bugchecker/trunk/src/zope/bugchecker/bugchecker.py Fix formatting of subject line to make it processable by the nightly aggregator.

Christian Theune ct at gocept.com
Thu Jun 17 03:33:44 EDT 2010


Log message for revision 113573:
  Fix formatting of subject line to make it processable by the nightly aggregator.
  

Changed:
  U   zope.bugchecker/trunk/src/zope/bugchecker/bugchecker.py

-=-
Modified: zope.bugchecker/trunk/src/zope/bugchecker/bugchecker.py
===================================================================
--- zope.bugchecker/trunk/src/zope/bugchecker/bugchecker.py	2010-06-17 07:31:32 UTC (rev 113572)
+++ zope.bugchecker/trunk/src/zope/bugchecker/bugchecker.py	2010-06-17 07:33:44 UTC (rev 113573)
@@ -259,11 +259,11 @@
     if total == 0:
         status = 'OK'
     else:
-        status = 'FAILURE'
+        status = 'FAILED'
 
     if sendmail is True:
         mail_it(mail_host, mail_from, mail_to, 
-                '%s: Total languishing bugs:  %d' % (status, total), report)
+                '%s : Total languishing bugs:  %d' % (status, total), report)
     if total > 0:
         sys.exit(-1)
 



More information about the checkins mailing list