diff options
-rwxr-xr-x | bin/reproducible_notes.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_notes.py b/bin/reproducible_notes.py index 81860fe1..85c32ce5 100755 --- a/bin/reproducible_notes.py +++ b/bin/reproducible_notes.py @@ -52,8 +52,9 @@ def load_notes(): + '\nThis means there is no tested ' + 'package with the name ' + pkg) try: - irc_msg("There is problem with the note for {} - " - "please check {}".format(pkg, os.environ['BUILD_URL'])) + irc_msg("There is problem with the note for {} (it may " + "have been removed from the archive). Please check {}". + format(pkg, os.environ['BUILD_URL'])) except KeyError: log.error('There is a problem with the note for %s - please ' 'check.', pkg) |