From 550f3f3eea96812a61fa2d4a7f633bf96dd7e1a4 Mon Sep 17 00:00:00 2001 From: CMDR furrycat Date: Thu, 26 Oct 2017 10:46:00 +0100 Subject: [PATCH] Typo. --- plugin/announcements/announcements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/announcements/announcements.py b/plugin/announcements/announcements.py index fe319c6..fa7f47d 100644 --- a/plugin/announcements/announcements.py +++ b/plugin/announcements/announcements.py @@ -366,7 +366,7 @@ class Announcements(DBConnection): if announcement.interval: text += ' scheduled for {}'.format(bot.iso8601(offset + announcement.interval)) if announcement.message_limit is not None: - text += ' reposted {}'.format('always' if announcement.message_limit == 0 else ' after {} message{}'.format(announcement.message_limit, 's' if announcement_message_limit > 1 else '')) + text += ' reposted {}'.format('always' if announcement.message_limit == 0 else ' after {} message{}'.format(announcement.message_limit, 's' if announcement.message_limit > 1 else '')) if announcement.asap == 'true': text += ' will be given ASAP' if announcement.probability < 0: -- 2.7.4