Explorar el Código

banner_untag: Fix encoding error.

main
Ben Kurtovic hace 6 años
padre
commit
0376a61420
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      tasks/banner_untag.py

+ 1
- 1
tasks/banner_untag.py Ver fichero

@@ -75,7 +75,7 @@ class BannerUntag(Task):
else:
self.logger.info(u"Skipping [[%s]], not latest edit" % title)
donefile.write("%d\n" % pageid)
errfile.write(u"%s\n" % title)
errfile.write("%s\n" % title.encode("utf8"))

if not stage2:
return


Cargando…
Cancelar
Guardar