summaryrefslogtreecommitdiff
path: root/yaksh/models.py
diff options
context:
space:
mode:
authoradityacp2017-01-05 15:51:35 +0530
committeradityacp2017-01-05 15:51:35 +0530
commit5f29daff88815e3ba87a2ff5933086e505e41581 (patch)
tree6bb30fb5397ba95fc92539cd23e4879d91310ef5 /yaksh/models.py
parent3f9773c4eb2a21902ccdefab89c7f503a08f1743 (diff)
downloadonline_test-5f29daff88815e3ba87a2ff5933086e505e41581.tar.gz
online_test-5f29daff88815e3ba87a2ff5933086e505e41581.tar.bz2
online_test-5f29daff88815e3ba87a2ff5933086e505e41581.zip
Fix cli for python 3
Diffstat (limited to 'yaksh/models.py')
-rw-r--r--yaksh/models.py2
1 files changed, 1 insertions, 1 deletions
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.