summaryrefslogtreecommitdiff
path: root/yaksh/scilab_code_evaluator.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2016-12-23 13:40:44 +0530
committerGitHub2016-12-23 13:40:44 +0530
commit48366e84b98157ac32b22b2aa19b1c1cde68afd4 (patch)
treeadb07f2709621b8906b5047da02010958bebba67 /yaksh/scilab_code_evaluator.py
parent77e8a6c1cde9190daf9075d71caf6017dc1380e7 (diff)
parent0e56fc6a77ec21db05c9bafb42b1acc652354a32 (diff)
downloadonline_test-48366e84b98157ac32b22b2aa19b1c1cde68afd4.tar.gz
online_test-48366e84b98157ac32b22b2aa19b1c1cde68afd4.tar.bz2
online_test-48366e84b98157ac32b22b2aa19b1c1cde68afd4.zip
Merge pull request #166 from ankitjavalkar/error-refactor-for-mod
Prettify Error rendering during code questions and grading page
Diffstat (limited to 'yaksh/scilab_code_evaluator.py')
-rw-r--r--yaksh/scilab_code_evaluator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/scilab_code_evaluator.py b/yaksh/scilab_code_evaluator.py
index cc3c401..bf16c84 100644
--- a/yaksh/scilab_code_evaluator.py
+++ b/yaksh/scilab_code_evaluator.py
@@ -69,7 +69,7 @@ class ScilabCodeEvaluator(BaseEvaluator):
# Clean output
stdout = self._strip_output(stdout)
if proc.returncode == 5:
- success, err = True, "Correct answer"
+ success, err = True, None
test_case_weight = float(self.weight) if self.partial_grading else 0.0
else:
err = add_err + stdout