From 1de7efe06ed76b338cbe9d2bb0125373f0c9036a Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Wed, 1 Aug 2012 18:28:03 -0400 Subject: [PATCH] Fix another bug. --- earwigbot/tasks/drn_clerkbot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/earwigbot/tasks/drn_clerkbot.py b/earwigbot/tasks/drn_clerkbot.py index e3c1f42..93bf4c4 100644 --- a/earwigbot/tasks/drn_clerkbot.py +++ b/earwigbot/tasks/drn_clerkbot.py @@ -633,8 +633,9 @@ class DRNClerkBot(Task): except exceptions.PageNotFoundError: text = "" if notice.too_late and notice.too_late in text: - log = u"Skipping [[{0}]]; was already notified with '{1}'" + log = u"Skipped [[{0}]]; was already notified with '{1}'" self.logger.info(log.format(page.title, template)) + continue text += ("\n" if text else "") + template try: page.edit(text, self.notify_summary, minor=False, bot=True)