소스 검색

Make one debug message more consistent.

pull/15/head
Ben Kurtovic 11 년 전
부모
커밋
d1c67f03f8
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      tasks/afc_statistics.py

+ 2
- 1
tasks/afc_statistics.py 파일 보기

@@ -242,7 +242,8 @@ class AFCStatistics(Task):
continue
msg = u"Updating page [[{0}]] (id: {1}) @ {2}"
self.logger.debug(msg.format(title, pageid, oldid))
self.logger.debug(" {0} -> {1}".format(oldid, real_oldid))
msg = u" {0}: oldid: {1} -> {2}"
self.logger.debug(msg.format(pageid, oldid, real_oldid))
real_title = real_title.decode("utf8").replace("_", " ")
ns = self.site.namespace_id_to_name(real_ns)
if ns:


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