diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-31 11:57:45 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-31 11:57:45 +0200 |
commit | 569bbc56058da2d0f61aeb819dd2c436d9fc1ebb (patch) | |
tree | b1ecf5b9c919a6096b23d16f6848b3932bd3b506 | |
parent | 61eaf18e5d66fd63524820c56e426de5c6afe6a9 (diff) | |
download | jenkins.debian.net-569bbc56058da2d0f61aeb819dd2c436d9fc1ebb.tar.xz |
reproducible: fix armhf links
-rwxr-xr-x | bin/reproducible_html_indexes.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index f02ce40c..49dfe25f 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -37,7 +37,7 @@ Reference doc for the folowing lists: * $count being the len() of the query indicated by `query2` - `query2`: useful only if `timely` is True. - `nosuite`: if true do not iterate over the suite/archs, use only the - defaults + current suite+arch + global: if true, then the page will saved on the root of rb.d.n, and: - the query also takes the value "status" - force the suite/arch to the defaults @@ -446,8 +446,8 @@ def build_leading_text_section(section, rows, suite, arch): def build_page_section(page, section, suite, arch): try: if pages[page].get('global') and pages[page]['global']: - suite = defaultsuite if not suite else suite - arch = defaultarch if not arch else arch + suite = defaultsuite + arch = defaultarch if pages[page].get('notes') and pages[page]['notes']: query = queries[section['query']].format( status=section['db_status'], suite=suite, arch=arch) @@ -509,7 +509,7 @@ def build_page(page, suite=None, arch=None): for section in page_sections: if gpage: if section.get('nosuite') and section['nosuite']: # only defaults - html += build_page_section(page, section, None, None)[0] + html += build_page_section(page, section, suite, arch)[0] else: for suite in SUITES: for arch in ARCHS: |