浏览代码

More minor unicode fixes

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

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

@@ -129,7 +129,7 @@ class Task(BaseTask):
"<!-- sig begin -->~~~ at ~~~~~<!-- sig end -->",
newtext)
page.edit(newtext, summary, minor=True, bot=True)
self.logger.info("Chart saved to [[{0}]]".format(page.title()))
self.logger.info(u"Chart saved to [[{0}]]".format(page.title()))

def compile_charts(self):
"""Compile and return all statistics information from our local db."""
@@ -256,7 +256,7 @@ class Task(BaseTask):
try:
self.update_page(cursor, pageid, real_title)
except Exception:
e = "Error updating page [[{0}]] (id: {1})"
e = u"Error updating page [[{0}]] (id: {1})"
self.logger.exception(e.format(real_title, pageid))

def add_untracked(self, cursor):
@@ -283,7 +283,7 @@ class Task(BaseTask):
try:
self.track_page(cursor, pageid, title)
except Exception:
e = "Error tracking page [[{0}]] (id: {1})"
e = u"Error tracking page [[{0}]] (id: {1})"
self.logger.exception(e.format(title, pageid))

def delete_old(self, cursor):


正在加载...
取消
保存