diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-10 20:12:53 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-10 20:12:53 +0200 |
commit | 456829dc08a52b27818d8bfa066a3b51b8fdd1ce (patch) | |
tree | 76f2a5ac926c3673e4f294c4a9441cd3a8dd0cc9 /bin | |
parent | caf660a2756c236dcb0488892563f45977615035 (diff) | |
download | jenkins.debian.net-456829dc08a52b27818d8bfa066a3b51b8fdd1ce.tar.xz |
reproducible: change loop order (noop)
Diffstat (limited to 'bin')
-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 6a0c53b5..29e514d1 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -567,8 +567,8 @@ bugs = get_bugs() if __name__ == '__main__': generate_schedule() - for suite in SUITES: - for arch in ARCHS: + for arch in ARCHS: + for suite in SUITES: if arch == 'armhf' and suite != 'unstable': continue for page in pages.keys(): |