From 27156fc5dc834b837382d7d11a6db442c2ed268c Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 7 Dec 2013 19:03:56 -0500 Subject: [PATCH] Fix a typo. --- commands/afc_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/afc_status.py b/commands/afc_status.py index dcb9d82..15438a9 100644 --- a/commands/afc_status.py +++ b/commands/afc_status.py @@ -144,7 +144,7 @@ class AFCStatus(Command): def count_submissions(self): """Returns the number of open AFC submissions (count of CAT:PEND).""" - minus = len(ignore_list) + minus = len(self.ignore_list) return self.site.get_category("Pending AfC submissions").pages - minus def count_redirects(self):