浏览代码

test fix in broken redirect status

tags/v0.1
Ben Kurtovic 13 年前
父节点
当前提交
23bb094acb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      irc/commands/afc_status.py

+ 1
- 1
irc/commands/afc_status.py 查看文件

@@ -94,7 +94,7 @@ class AFCStatus(BaseCommand):

def count_redirects(self):
content = self.get_page("Wikipedia:Articles_for_creation/Redirects")
total = len(re.findall("==\s*(Redirect|Category) request: \[\[(.*?)\]\]\s*==", content))
total = len(re.findall("^\s*==(.*?)==\s*$", content, re.MULTILINE))
closed = content.lower().count("{{afc-c|b}}")
redirs = total - closed
return redirs


正在加载...
取消
保存