summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorXimin Luo <infinity0@debian.org>2016-06-11 17:08:03 +0200
committerHolger Levsen <holger@layer-acht.org>2016-06-11 17:08:38 +0200
commit6325fba65a26cbf0739a1984384bca57257d02e9 (patch)
treef91a1fe2e61319a5ff8929a147ae72e6c7f3eb66 /bin/reproducible_html_notes.py
parent10624f7c479d57707939fcfdf12191cb7ce3dd0e (diff)
downloadjenkins.debian.net-6325fba65a26cbf0739a1984384bca57257d02e9.tar.xz
reproducible debian: replace underscore with space so browsers can wrap it better
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 5819a05b..47b5dbf3 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -405,7 +405,7 @@ def index_issues(issues, scorefuncs):
for issue in sorted(issues, key=lambda issue: sort_issues(firstscorefunc, issue)):
html += tab*3 + '<tr>\n'
html += tab*4 + '<td><a href="' + ISSUES_URI + '/' + defaultsuite + \
- '/'+ issue + '_issue.html">' + issue + '</a></td>\n'
+ '/'+ issue + '_issue.html">' + issue.replace("_", " ") + '</a></td>\n'
issues_list = issues_count.get(issue, [])
for scorefunc in scorefuncs.values():
html += tab*4 + '<td><b>' + str(scorefunc(issues_list)) + '</b></td>\n'