diff options
author | Ximin Luo <infinity0@debian.org> | 2016-06-11 17:08:03 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-11 17:08:38 +0200 |
commit | 6325fba65a26cbf0739a1984384bca57257d02e9 (patch) | |
tree | f91a1fe2e61319a5ff8929a147ae72e6c7f3eb66 | |
parent | 10624f7c479d57707939fcfdf12191cb7ce3dd0e (diff) | |
download | jenkins.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>
-rwxr-xr-x | bin/reproducible_html_notes.py | 2 |
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' |