From 5f29daff88815e3ba87a2ff5933086e505e41581 Mon Sep 17 00:00:00 2001 From: adityacp Date: Thu, 5 Jan 2017 15:51:35 +0530 Subject: Fix cli for python 3 --- yaksh/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yaksh/models.py') diff --git a/yaksh/models.py b/yaksh/models.py index a91f4d2..9fd4f9b 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -232,7 +232,7 @@ class Question(models.Model): type = models.CharField(max_length=24, choices=question_types) # The type of evaluator - #test_case_type = models.CharField(max_length=24, choices=test_case_types) + test_case_type = models.CharField(max_length=24, choices=test_case_types) # Is this question active or not. If it is inactive it will not be used # when creating a QuestionPaper. -- cgit