diff options
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 |