From fc87a255165e1d817b3f839edd2b49dea890fd11 Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 11 Mar 2021 12:54:42 +0000 Subject: [PATCH] . --- generic/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic/views.py b/generic/views.py index 7adfffee..2e39cbc7 100644 --- a/generic/views.py +++ b/generic/views.py @@ -335,7 +335,7 @@ class ExamViews(View, LoginRequiredMixin): if self.question_type == "long": h = {} for question in exam.exam_questions.all(): - h[question.pk] = question.json_creation_time + h[question.pk] = question.json_creation_time.isoformat() json["multi_question_json"] = h active_exams["exams"].append( json )