Explorar el Código

More minor unicode fixes

tags/v0.1^2
Ben Kurtovic hace 12 años
padre
commit
025a7b3e37
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      earwigbot/tasks/afc_statistics.py

+ 3
- 3
earwigbot/tasks/afc_statistics.py Ver fichero

@@ -129,7 +129,7 @@ class Task(BaseTask):
"<!-- sig begin -->~~~ at ~~~~~<!-- sig end -->", "<!-- sig begin -->~~~ at ~~~~~<!-- sig end -->",
newtext) newtext)
page.edit(newtext, summary, minor=True, bot=True) 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): def compile_charts(self):
"""Compile and return all statistics information from our local db.""" """Compile and return all statistics information from our local db."""
@@ -256,7 +256,7 @@ class Task(BaseTask):
try: try:
self.update_page(cursor, pageid, real_title) self.update_page(cursor, pageid, real_title)
except Exception: 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)) self.logger.exception(e.format(real_title, pageid))


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


def delete_old(self, cursor): def delete_old(self, cursor):


Cargando…
Cancelar
Guardar