Browse Source

Make that line a bit shorter

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
4895ad18e3
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      earwigbot/tasks/afc_copyvios.py

+ 2
- 1
earwigbot/tasks/afc_copyvios.py View File

@@ -93,7 +93,8 @@ class AFCCopyvios(Task):
confirm = page.copyvio_compare(url, self.min_confidence) confirm = page.copyvio_compare(url, self.min_confidence)
new_conf = "{0}%".format(round(confirm.confidence * 100, 2)) new_conf = "{0}%".format(round(confirm.confidence * 100, 2))
if not confirm.violation: 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)) self.logger.info(msg.format(title, url, orig_conf, new_conf))


safeurl = quote(url.encode("utf8"), safe="/:").decode("utf8") safeurl = quote(url.encode("utf8"), safe="/:").decode("utf8")


Loading…
Cancel
Save