summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_indexes.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-08-02 14:55:41 +0200
committerHolger Levsen <holger@layer-acht.org>2015-08-02 14:56:17 +0200
commit70104bc769d8923087c31ad38be1a63a2efc759f (patch)
tree426caaadcd7b3c6add35ae5451ab320d7da3c46f /bin/reproducible_html_indexes.py
parent86c8956964c45f76c01b276535a156249bc7389e (diff)
downloadjenkins.debian.net-70104bc769d8923087c31ad38be1a63a2efc759f.tar.xz
reproducible: fix grammar: s#arches#archs#
Diffstat (limited to 'bin/reproducible_html_indexes.py')
-rwxr-xr-xbin/reproducible_html_indexes.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py
index 06491c2a..64802c2a 100755
--- a/bin/reproducible_html_indexes.py
+++ b/bin/reproducible_html_indexes.py
@@ -36,7 +36,7 @@ Reference doc for the folowing lists:
* $count_total being the number of all tested packages
* $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/arches, use only the
+ - `nosuite`: if true do not iterate over the suite/archs, use only the
defaults
+ global: if true, then the page will saved on the root of rb.d.n, and:
- the query also takes the value "status"
@@ -499,7 +499,7 @@ def build_page(page, suite=None, arch=None):
html += build_page_section(page, section, None, None)[0]
else:
for suite in SUITES:
- for arch in ARCHES:
+ for arch in ARCHS:
log.debug('global page §' + section['db_status'] +
' in ' + page + ' for ' + suite + '/' + arch)
html += build_page_section(page, section, suite, arch)[0]
@@ -553,6 +553,6 @@ bugs = get_bugs()
if __name__ == '__main__':
generate_schedule()
for suite in SUITES:
- for arch in ARCHES:
+ for arch in ARCHS:
for page in pages.keys():
build_page(page, suite, arch)