Browse Source

banner_untag: Fix encoding error.

main
Ben Kurtovic 6 years ago
parent
commit
0376a61420
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tasks/banner_untag.py

+ 1
- 1
tasks/banner_untag.py View File

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


Loading…
Cancel
Save