diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-27 17:23:57 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-27 17:23:57 +0200 |
commit | 4af00c04a9041fef093ca941f5cb5a83bc2db189 (patch) | |
tree | d19b881169a01e41f4014907607951bd09829f14 /bin | |
parent | e1577f6cc0a1f0ab7ecdcca7aaf125b7c832b3ee (diff) | |
download | jenkins.debian.net-4af00c04a9041fef093ca941f5cb5a83bc2db189.tar.xz |
reproducible: fix link target
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 e56dab98..d03e215a 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -273,7 +273,7 @@ def _gen_links(suite, arch): for i in SUITES: # suite links if arch == 'armhf' and i != 'unstable': continue - html += '<li><a href="/' + i + 'index_suite_' + arch + '_stats.html">suite: ' + i + '</a></li>' + html += '<li><a href="/' + i + '/index_suite_' + arch + '_stats.html">suite: ' + i + '</a></li>' if arch == 'amd64': html += '<li><a href="/unstable/index_suite_armhf_stats.html\">arch: armhf</a></li>' else: |