diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-06 15:18:09 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-06 15:18:09 +0200 |
commit | 8285c356b935f73871ec358c9c9e88637dd49864 (patch) | |
tree | cecf16c287918895de5cb9fdb51887ef3f0fc9a1 | |
parent | 712963759fe82290476d6f3337fbd5c0a5f756b1 (diff) | |
download | jenkins.debian.net-8285c356b935f73871ec358c9c9e88637dd49864.tar.xz |
reproducible: fix navigation links for armhf index pages
-rwxr-xr-x | bin/reproducible_html_indexes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index 49dfe25f..2244d800 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -529,7 +529,7 @@ def build_page(page, suite=None, arch=None): destfile = BASE + '/' + suite + '/' + arch + '/index_' + page + '.html' desturl = REPRODUCIBLE_URL + '/' + suite + '/' + arch + '/index_' + \ page + '.html' - write_html_page(title=title, body=html, destfile=destfile, suite=suite, style_note=footnote) + write_html_page(title=title, body=html, destfile=destfile, suite=suite, arch=arch, style_note=footnote) log.info('"' + title + '" now available at ' + desturl) |