summaryrefslogtreecommitdiff
path: root/yaksh/views.py
diff options
context:
space:
mode:
authoradityacp2017-01-13 09:47:05 +0530
committerGitHub2017-01-13 09:47:05 +0530
commit0e3e0cdbf322df9b5c8b7da0301cebe71eadcbe9 (patch)
tree8969f5db3aeb70350e089e97fb5e37bd0e4db1ab /yaksh/views.py
parent7fb288ffd992c912a8e2288aa97d6c6ceeedf1a1 (diff)
parent57a5d99c7ed5aed498943686b2c951bdaba3852a (diff)
downloadonline_test-0e3e0cdbf322df9b5c8b7da0301cebe71eadcbe9.tar.gz
online_test-0e3e0cdbf322df9b5c8b7da0301cebe71eadcbe9.tar.bz2
online_test-0e3e0cdbf322df9b5c8b7da0301cebe71eadcbe9.zip
Merge pull request #179 from maheshgudi/mcq_bugfix
Fixed a bug which would mark all MCQ and MCC questions' answers as correct
Diffstat (limited to 'yaksh/views.py')
-rw-r--r--yaksh/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/yaksh/views.py b/yaksh/views.py
index 7ecf6aa..0d54f8a 100644
--- a/yaksh/views.py
+++ b/yaksh/views.py
@@ -488,12 +488,12 @@ def check(request, q_id, attempt_num=None, questionpaper_id=None):
# safely in a separate process (the code_server.py) running as nobody.
json_data = current_question.consolidate_answer_data(user_answer) \
if current_question.type == 'code' else None
- correct, result = paper.validate_answer(user_answer, current_question, json_data)
- if correct or result.get('success'):
+ result = paper.validate_answer(user_answer, current_question, json_data)
+ if result.get('success'):
new_answer.marks = (current_question.points * result['weight'] /
current_question.get_maximum_test_case_weight()) \
if current_question.partial_grading and current_question.type == 'code' else current_question.points
- new_answer.correct = correct
+ new_answer.correct = result.get('success')
error_message = None
new_answer.error = json.dumps(result.get('error'))
next_question = paper.completed_question(current_question.id)