From f3c6f9a43d6521e861aac411da557ea71822d803 Mon Sep 17 00:00:00 2001 From: Ross Date: Wed, 3 Mar 2021 19:52:30 +0000 Subject: [PATCH] . --- rapids/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rapids/models.py b/rapids/models.py index 4363d40b..a72dc6cd 100644 --- a/rapids/models.py +++ b/rapids/models.py @@ -99,7 +99,7 @@ class Answer(models.Model): self.answer = self.answer.strip() s = self.answer.lower() - s = s.translate(str.maketrans('', '', string.punctuation)) + s = s.translate(str.maketrans('', '', string.punctuation.replace("#", ""))) self.answer_compare = s