diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-10-10 18:30:24 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-11 12:46:00 +0200 |
commit | fcddf8468deb1a9344c12ae525456bbca4f6ca54 (patch) | |
tree | de8af95ee6b8626d65403359018bdbddfc94341c /bin | |
parent | aeebb21719a4999cbdc658c51b3627e757a9c968 (diff) | |
download | jenkins.debian.net-fcddf8468deb1a9344c12ae525456bbca4f6ca54.tar.xz |
reproducible: scheduler: the Package class is only interested to know the package name
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 7ec22535..435e6f49 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -272,7 +272,7 @@ def update_sources_db(suite, arch, sources): sys.exit(1) if pkgs_to_add: log.info('Building pages for the new packages') - gen_packages_html([Package(x) for x in pkgs_to_add], no_clean=True) + gen_packages_html([Package(x[0]) for x in pkgs_to_add], no_clean=True) def print_schedule_result(suite, arch, criteria, packages): |