Procházet zdrojové kódy

banner_untag: Fix encoding error.

main
Ben Kurtovic před 7 roky
rodič
revize
0376a61420
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      tasks/banner_untag.py

+ 1
- 1
tasks/banner_untag.py Zobrazit soubor

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


Načítá se…
Zrušit
Uložit