diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-08-18 22:34:59 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-19 00:41:01 +0200 |
commit | 724c5119f50abaa9b645525af20861e565afbc62 (patch) | |
tree | a6039345f48c1b714459814503a1897cc3be23ad | |
parent | d2def1a173a034a774406f5801b753d06ffe5962 (diff) | |
download | jenkins.debian.net-724c5119f50abaa9b645525af20861e565afbc62.tar.xz |
reproducible: setup_notify: fix the package generation step after the last refactor
-rwxr-xr-x | bin/reproducible_setup_notify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_setup_notify.py b/bin/reproducible_setup_notify.py index 0648744f..8daee9ed 100755 --- a/bin/reproducible_setup_notify.py +++ b/bin/reproducible_setup_notify.py @@ -91,7 +91,7 @@ c = conn_db.cursor() for package in packages: process_pkg(package, local_args.deactivate) -gen_packages_html(packages, no_clean=True) +gen_packages_html([Package(x) for x in packages], no_clean=True) build_page('notify') if local_args.deactivate: |