浏览代码

Make that line a bit shorter

tags/v0.1^2
Ben Kurtovic 12 年前
父节点
当前提交
4895ad18e3
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      earwigbot/tasks/afc_copyvios.py

+ 2
- 1
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")


正在加载...
取消
保存