diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-09 19:10:45 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-09 19:10:45 +0200 |
commit | 30175dfe8c221db5ac96014b72e93e3118bd6856 (patch) | |
tree | 5f9254a54d5d59b0fce3e98f353f3798b6201969 | |
parent | 8755811f6d6797e85df666e6317a7bee7c78f0a9 (diff) | |
download | jenkins.debian.net-30175dfe8c221db5ac96014b72e93e3118bd6856.tar.xz |
reproducible: fix punctation in irc message
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 405ca516..dacdf88d 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -392,7 +392,7 @@ def scheduler(): if msg_untested: message += msg_untested message += ' and ' if msg_new and not msg_old_ftbfs and not msg_old else '' - message += '' if not msg_new and not msg_old_ftbfs and not msg_old else ', ' + message += ', ' if ( msg_new and msg_old_ftbfs ) or ( msg_new and msg_old ) else '' if msg_new: message += msg_new message += ' and ' if msg_old_ftbfs and not msg_old else '' |