소스 검색

banner_untag: Fix encoding error.

main
Ben Kurtovic 7 년 전
부모
커밋
0376a61420
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      tasks/banner_untag.py

+ 1
- 1
tasks/banner_untag.py 파일 보기

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


불러오는 중...
취소
저장