diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-14 18:40:22 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-14 18:40:22 +0100 |
commit | b3bc07b72ca1da5159d900b4cebc7d84b632df83 (patch) | |
tree | 87b48b60129b2ccd797da2d90506c16ff6b130bd /bin | |
parent | b0b13222c460eeda2d678ddc91a186b860d37409 (diff) | |
download | jenkins.debian.net-b3bc07b72ca1da5159d900b4cebc7d84b632df83.tar.xz |
reproducible: don't fail the job if a package with notes was removed
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_notes.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index c0f01c1b..98ce5192 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -162,10 +162,8 @@ def load_notes(): query = query.format(pkg=package) result = query_db(query)[0] except IndexError: - print_critical_message('This query produces no results: ' + query + - '\nThis means there is no tested package with the name ' + - package + '.') - raise + log.warning("This query produces no results: " + query) + log.warning("This means there is no tested package with the name " + package + ".") return notes |