Author: Matti Picus [email protected]
Branch: 
Changeset: r1007:1809f8e093b8
Date: 2016-05-31 19:46 +0200
http://bitbucket.org/pypy/buildbot/changeset/1809f8e093b8/

Log:    fix

diff --git a/bot2/pypybuildbot/summary.py b/bot2/pypybuildbot/summary.py
--- a/bot2/pypybuildbot/summary.py
+++ b/bot2/pypybuildbot/summary.py
@@ -600,13 +600,13 @@
 
         longrepr = outcome_set.get_longrepr(namekey)
 
-        builderLink = html.a('%s build #%s' % (builderName, build),
+        builderLink = html.a('builder: %s build #%s' % (builderName, 
buildNumber),
                              href="/builders/%s/builds/%s" % (
-                                 builderName, build))
+                                 builderName, buildNumber))
 
         return html.div([html.h2(self.getTitle(request)),
                          html.pre(longrepr),
-                         html.pre('builder: ' + builderLink,
+                         html.pre(builderLink,
                                   style='border-top:1px solid;'),
                          html.pre('test: ' + 
self.getTitle(request).replace('.','/')),
                          py.xml.raw("<!-- %s -->" % outcome_set_cache.stats())
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to