[pypy-commit] buildbot default: detail

arigo pypy.commits at gmail.com
Thu Aug 18 07:09:17 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r1014:879f3ec8e19a
Date: 2016-08-18 13:09 +0200
http://bitbucket.org/pypy/buildbot/changeset/879f3ec8e19a/

Log:	detail

diff --git a/bot2/pypybuildbot/summary.py b/bot2/pypybuildbot/summary.py
--- a/bot2/pypybuildbot/summary.py
+++ b/bot2/pypybuildbot/summary.py
@@ -509,6 +509,10 @@
                     extra = {}
                     if failed:
                         extra = {'class': "failSummary failed"}
+                    elif letter in (' ', '.'):
+                        # failure, but letter is " " or ".".
+                        # Replace with "E", which stands out more
+                        letter = 'E'
                     line.append([" ",html.a(letter, href=longrepr_url,
                                             **extra)])
                 else:


More information about the pypy-commit mailing list