diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-31 11:24:44 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-31 11:24:44 +0200 |
commit | 43b52fcb552e99ce282b2e379ff534d416d84f3f (patch) | |
tree | 6c4280bfb82d2092c03437ee4747bee9b26ba9a1 | |
parent | 20897305096646352a178683003dd821a76e716a (diff) | |
download | jenkins.debian.net-43b52fcb552e99ce282b2e379ff534d416d84f3f.tar.xz |
reproducible: fix armhf navigation links
-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 31ad7338..0f2d070a 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -267,7 +267,7 @@ def _gen_links(suite, arch): html = '' for link in links: if link[0] == 'pkg_sets' and suite == 'experimental': - html += link[1].format(suite=defaultsuite, arch=arch) + '\n' + html += link[1].format(suite=suite, arch=arch) + '\n' continue html += link[1].format(suite=suite, arch=arch) + '\n' for i in SUITES: # suite links |