Ver código fonte

banner_untag: Fix encoding error.

main
Ben Kurtovic 7 anos atrás
pai
commit
0376a61420
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      tasks/banner_untag.py

+ 1
- 1
tasks/banner_untag.py Ver arquivo

@@ -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


Carregando…
Cancelar
Salvar