diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-21 16:44:46 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-21 16:50:20 +0200 |
commit | 1a37e1fa6967c3b346e2fd756531ab973ba1b350 (patch) | |
tree | 381922b69c14e3071d5943434561763ea23871e3 /bin | |
parent | 064eab986fba3d7e193939327dd4f49eab3b4ae1 (diff) | |
download | jenkins.debian.net-1a37e1fa6967c3b346e2fd756531ab973ba1b350.tar.xz |
reproducible: html_notes: directly link the "new" suite-relative issue pages instead of the old ones
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_notes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index c7553b37..7769796d 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -378,8 +378,8 @@ def index_issues(issues): html = (tab*2).join(templ.splitlines(True)) for issue in sorted(issues, key=sort_issues): html += tab*3 + '<tr>\n' - html += tab*4 + '<td><a href="' + ISSUES_URI + '/' + issue + \ - '_issue.html">' + issue + '</a></td>\n' + html += tab*4 + '<td><a href="' + ISSUES_URI + '/' + defaultsuite + \ + '/'+ issue + '_issue.html">' + issue + '</a></td>\n' html += tab*4 + '<td>\n' try: html += tab*5 + '<b>' + str(len(issues_count[issue])) + '</b>:\n' |