소스 검색

Log a warning if the talk page's subject doesn't exist.

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

+ 4
- 0
tasks/afc_undated.py 파일 보기

@@ -147,6 +147,10 @@ class AFCUndated(Task):
a file page.
"""
subject = page.toggle_talk()
if subject.exists == subject.PAGE_MISSING:
log = u"Couldn't process [[{0}]]: subject page doesn't exist"
self.logger.warn(log.format(page.title))
return None, None
if subject.namespace == NS_FILE:
return self.get_filedata(subject)
self.logger.debug(u"[[{0}]]: Getting talkdata".format(page.title))


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