diff options
Diffstat (limited to 'bin/reproducible_html_indexes.py')
-rwxr-xr-x | bin/reproducible_html_indexes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index e79c04ca..6923798c 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -512,7 +512,7 @@ def build_page(page, suite=None, arch=None): else: for suite in SUITES: for arch in ARCHS: - if arch == 'armhf' and suite != 'unstable': + if arch == 'armhf' and suite == 'testing': continue log.debug('global page §' + section['db_status'] + ' in ' + page + ' for ' + suite + '/' + arch) @@ -539,7 +539,7 @@ bugs = get_bugs() # this variable should not be global, else merely importing _h if __name__ == '__main__': for arch in ARCHS: for suite in SUITES: - if arch == 'armhf' and suite != 'unstable': + if arch == 'armhf' and suite == 'testing': continue for page in pages.keys(): if 'global' not in pages[page] or not pages[page]['global']: |