diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-20 23:11:55 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-20 23:11:55 +0200 |
commit | c80c364d71e36b5ea7c622e230cb815ae80c7198 (patch) | |
tree | 6e08d01ce78cd1b83bc8bc9891e407295ad9af45 | |
parent | d73b78f46da854a66c4618b005c8e7f0ec45c64c (diff) | |
download | jenkins.debian.net-c80c364d71e36b5ea7c622e230cb815ae80c7198.tar.xz |
reproducible: fix links to index_not_for_us.html
-rwxr-xr-x | bin/reproducible_html_packages.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index b9cd7363..acf769d3 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -177,6 +177,8 @@ def gen_suites_links(package, suite): version = i[3] if i[3] else i[2] if status == 'unreproducible': status = 'FTBR' + elif status == 'not for us': + status = 'not_for_us' html += '<span class="avoidwrap">\n' + tab if status != 'untested': prefix = ' <a href="/' + i[0] + '/' + i[1] + '/index_' + status + '.html">' |