[Buildbot-commits] buildbot/buildbot/status html.py,1.41,1.42

Brian Warner warner at users.sourceforge.net
Thu Oct 14 16:47:04 UTC 2004


Update of /cvsroot/buildbot/buildbot/buildbot/status
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3610/buildbot/status

Modified Files:
	html.py 
Log Message:
(StatusResourceBuild.body): fix syntax error introduced in the last commit.
We really need that metabuildbot :).


Index: html.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/status/html.py,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- html.py	12 Oct 2004 19:04:53 -0000	1.41
+++ html.py	14 Oct 2004 16:47:01 -0000	1.42
@@ -178,7 +178,7 @@
         data = ("<h1>Build %s:#%d</h1>\n"
                 "<h2>Reason:</h2>\n%s\n"
                 % (b.getBuilder().getName(), b.getNumber(),
-                   html.escape(b.getReason()))
+                   html.escape(b.getReason())))
         if b.isFinished():
             data += "<h2>Results:</h2>"
             data += " ".join(b.getText())





More information about the Commits mailing list