[Python-checkins] hooks: Do not hide status messages from the buildbot hook

antoine.pitrou python-checkins at python.org
Sat Feb 19 13:18:39 CET 2011


antoine.pitrou pushed 0db5eb2adbff to hooks:

http://hg.python.org/hooks/rev/0db5eb2adbff
changeset:   25:0db5eb2adbff
tag:         tip
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Feb 19 13:18:37 2011 +0100
summary:
  Do not hide status messages from the buildbot hook

files:
  buildbot.py

diff --git a/buildbot.py b/buildbot.py
--- a/buildbot.py
+++ b/buildbot.py
@@ -51,7 +51,7 @@
                       c['files'], c['username'])
     for change in changes:
         d.addCallback(send, change)
-    #d.addCallbacks(s.printSuccess, s.printFailure)
+    d.addCallbacks(s.printSuccess, s.printFailure)
     d.addBoth(s.stop)
     s.run()
 

--
Repository URL: http://hg.python.org/hooks


More information about the Python-checkins mailing list