From 4895ad18e377b9ae91d2b077177c6fbc15f7c0ad Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 19 Jul 2012 01:19:18 -0400 Subject: [PATCH] Make that line a bit shorter --- earwigbot/tasks/afc_copyvios.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/earwigbot/tasks/afc_copyvios.py b/earwigbot/tasks/afc_copyvios.py index ae193d5..0716139 100644 --- a/earwigbot/tasks/afc_copyvios.py +++ b/earwigbot/tasks/afc_copyvios.py @@ -93,7 +93,8 @@ class AFCCopyvios(Task): confirm = page.copyvio_compare(url, self.min_confidence) new_conf = "{0}%".format(round(confirm.confidence * 100, 2)) if not confirm.violation: - msg = u"A violation was detected in [[{0}]], but couldn't be confirmed. It may have just been edited (best: {1} at {2} -> {3} confidence)" + msg = u"A violation was detected in [[{0}]], but couldn't be confirmed." + msg += u" It may have just been edited (best: {1} at {2} -> {3} confidence)" self.logger.info(msg.format(title, url, orig_conf, new_conf)) safeurl = quote(url.encode("utf8"), safe="/:").decode("utf8")