This website works better with JavaScript.
Home
Help
Sign In
ben
/
earwigbot-plugins
mirror of
https://github.com/earwig/earwigbot-plugins
Watch
1
Star
1
Fork
0
Code
Releases
1
Activity
Browse Source
banner_untag: Fix encoding error.
main
Ben Kurtovic
7 years ago
parent
47d38593c4
commit
0376a61420
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Cancel
Save