From 59250e577817ef96813e42d4ea82061ac5f15556 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Tue, 8 Nov 2011 17:12:44 -0500 Subject: [PATCH] Logic error, whoops --- bot/tasks/afc_statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/tasks/afc_statistics.py b/bot/tasks/afc_statistics.py index edb4ecc..354e2de 100644 --- a/bot/tasks/afc_statistics.py +++ b/bot/tasks/afc_statistics.py @@ -634,7 +634,7 @@ class Task(BaseTask): return None, None, None content = self.get_revision_content(revid) statuses = self.get_statuses(content) - if search_for in statuses: + if search_for not in statuses: return last last = (user, datetime.strptime(ts, "%Y%m%d%H%M%S"), revid)