Author: Armin Rigo <[email protected]>
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:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to