summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-14 18:40:22 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-14 18:40:22 +0100
commitb3bc07b72ca1da5159d900b4cebc7d84b632df83 (patch)
tree87b48b60129b2ccd797da2d90506c16ff6b130bd /bin
parentb0b13222c460eeda2d678ddc91a186b860d37409 (diff)
downloadjenkins.debian.net-b3bc07b72ca1da5159d900b4cebc7d84b632df83.tar.xz
reproducible: don't fail the job if a package with notes was removed
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_html_notes.py6
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