diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-14 18:53:30 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-14 19:15:30 +0100 |
commit | cf5d0d5127aeab225f356ecb2fe90e49de22a99b (patch) | |
tree | f89cd6d8595d03aa64b347561e5eea5ceeb61cca | |
parent | 8ac240d38063079c8d2ae7508e4c44589b86c29f (diff) | |
download | jenkins.debian.net-cf5d0d5127aeab225f356ecb2fe90e49de22a99b.tar.xz |
reproducible: remove package from packages with notes if package doesnt exist
-rwxr-xr-x | bin/reproducible_html_notes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 0266b77d..917ccd97 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -165,6 +165,7 @@ def load_notes(): except IndexError: log.warning("This query produces no results: " + query) log.warning("This means there is no tested package with the name " + package + ".") + del notes[package] return notes |