summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--forum/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/forum/models.py b/forum/models.py
index 8a8ea627..fd9ef760 100644
--- a/forum/models.py
+++ b/forum/models.py
@@ -787,7 +787,7 @@ def record_answer_event(instance, created, **kwargs):
question_user = instance.question.author
found_match = False
for m in question_user.message_set.all():
- match = new_responses_re.search(m.message)
+ match = record_answer_event_re.search(m.message)
if match:
found_match = True
cnt = int(match.group(1))