diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-06 15:20:19 +0100 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-06 15:20:19 +0100 |
commit | 7fc2611ecbe57022bdecbed1e03ac347db80b472 (patch) | |
tree | c907365bbd739b737e0562132407aca444013979 /bin | |
parent | e45b482e384474fc6983d879fae1b72a42a52591 (diff) | |
download | jenkins.debian.net-7fc2611ecbe57022bdecbed1e03ac347db80b472.tar.xz |
reproducible: scheduler: fix TypeError while generating the indexes pages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 3dd45b4b..bc254fb0 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -266,8 +266,8 @@ def scheduler(): schedule_packages(all_scheduled_pkgs) call(kgb) log.info(message) - build_page('scheduled', suite) # from reproducible_html_indexes, build suite specific page - build_page('scheduled') # from reproducible_html_indexes, build global page + build_page('scheduled', suite, 'amd64') # build suite specific page. FIXME unhardcode amd64 + build_page('scheduled') # from reproducible_html_indexes, build global page log.info('\n\n\n') log.info(message) |