浏览代码

Missed a Unicode bug

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

+ 1
- 1
earwigbot/tasks/afc_statistics.py 查看文件

@@ -247,7 +247,7 @@ class Task(BaseTask):
msg = u"Updating page [[{0}]] (id: {1}) @ {2}"
self.logger.debug(msg.format(title, pageid, oldid))
self.logger.debug(" {0} -> {1}".format(oldid, real_oldid))
base = result[0][1].replace("_", " ")
base = result[0][1].decode("utf8").replace("_", " ")
ns = self.site.namespace_id_to_name(result[0][2])
if ns:
real_title = u":".join((ns, base))


正在加载...
取消
保存