diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-03 00:55:30 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-03 00:56:44 +0100 |
commit | 4d272ec81bf8e67e773a1932c05f20c22392c9bc (patch) | |
tree | 1a26a18fbe9beb9d76dd9ca2ab8939c07dd89c76 /bin | |
parent | b3bbb2b6e1a6be12d6567b2b3c7e669da70b9838 (diff) | |
download | jenkins.debian.net-4d272ec81bf8e67e773a1932c05f20c22392c9bc.tar.xz |
reproducible: common: fixup last commit, missing a slash
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index f86daf05..613d8d6c 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -200,7 +200,7 @@ def write_html_page(title, body, destfile, suite=None, noheader=False, style_not suite_links = "" for i in SUITES: if i != suite: - suite_links += '<li><a href="' + i +'">suite: ' + i + '</a></li>' + suite_links += '<li><a href="/' + i +'">suite: ' + i + '</a></li>' html += html_head_page.substitute( page_title=title, count_total=count_total, |