diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 70fcc9da..de525aab 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -201,12 +201,8 @@ def _gen_links(suite, arch): html += link[1].format(suite=suite, arch=arch) + '\n' if not suite: html += link[1].format(suite='unstable', arch=arch) + '\n' - if suite: # suite stats - html += '<li><a href="/' + suite + \ - '/index_suite_stats.html">suite: ' + suite + '</a></li>' for i in SUITES: # suite links - if i != suite: - html += '<li><a href="/' + i +'">suite: ' + i + '</a></li>' + html += '<li><a href="/' + i +'">suite: ' + i + '</a></li>' return html |