瀏覽代碼

Convert Wikicode objects correctly.

pull/15/head
Ben Kurtovic 11 年之前
父節點
當前提交
9afbf21939
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      tasks/afc_statistics.py

+ 2
- 1
tasks/afc_statistics.py 查看文件

@@ -644,7 +644,8 @@ class AFCStatistics(Task):
if tmpl.name.strip().lower() == "afc submission":
if all([tmpl.has(par, ignore_empty=True) for par in params]):
if status in statuses:
submits.append([tmpl.get(par).value for par in params])
data = [unicode(tmpl.get(par).value) for par in params]
submits.append(data)
if not submits:
return None
latest = max(submits, key=lambda pair: pair[1])


Loading…
取消
儲存