From 2ebb0b4473fe714e89cdfe8d1cf9b4009eaaa5ec Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 29 Jul 2024 11:47:45 +0100 Subject: [PATCH] try to fix longs scoring bug --- generic/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generic/views.py b/generic/views.py index 44d4d849..8ca56f96 100644 --- a/generic/views.py +++ b/generic/views.py @@ -2166,8 +2166,8 @@ class ExamViews(View, LoginRequiredMixin): # so we need to check for those if self.app_name == "longs": for question in questions: - if question not in by_question: - continue + #if question not in by_question: + # continue if user not in by_question[question]: #print("NOT in")