diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-08-19 22:58:54 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-20 01:09:01 +0200 |
commit | 18d843c48a80634e6983ae9cae1551df7d21d2e5 (patch) | |
tree | 78be4dc5a4d9e70a30372efaf80447351bd7cb73 | |
parent | d91fd954c9b337141711abb75e736012c0e715b7 (diff) | |
download | jenkins.debian.net-18d843c48a80634e6983ae9cae1551df7d21d2e5.tar.xz |
reproducible: fix syntax
-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 0a5d7388..1616508f 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -273,7 +273,7 @@ def _gen_links(suite, arch): html += '<li><a href="/' + i +'">suite: ' + i + '</a></li>' if arch == 'amd64': html += '<li><a href="/unstable/index_suite_armhf_stats.html\">armhf</a></li>' - else + else: html += '<li><a href="/unstable/index_suite_amd64_stats.html\">amd64</a></li>' return html |