diff options
author | maheshgudi | 2016-12-23 15:00:27 +0530 |
---|---|---|
committer | maheshgudi | 2016-12-23 15:00:27 +0530 |
commit | b582c624a7c49e3312e07196df87f26180a520c2 (patch) | |
tree | 909679721d2fa2b55a27e7621999dd04c9d36146 /yaksh/stdio_evaluator.py | |
parent | 5f6b103408ff8a520c741d2d21d1aff24a823dad (diff) | |
parent | 48366e84b98157ac32b22b2aa19b1c1cde68afd4 (diff) | |
download | online_test-b582c624a7c49e3312e07196df87f26180a520c2.tar.gz online_test-b582c624a7c49e3312e07196df87f26180a520c2.tar.bz2 online_test-b582c624a7c49e3312e07196df87f26180a520c2.zip |
fixed pull conflicts
Diffstat (limited to 'yaksh/stdio_evaluator.py')
-rw-r--r-- | yaksh/stdio_evaluator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/stdio_evaluator.py b/yaksh/stdio_evaluator.py index 106facd..fb9dfb3 100644 --- a/yaksh/stdio_evaluator.py +++ b/yaksh/stdio_evaluator.py @@ -21,7 +21,7 @@ class StdIOEvaluator(BaseEvaluator): format(expected_input, repr(expected_output)) if output_err == '': if user_output == expected_output: - success, err = True, "Correct answer" + success, err = True, None else: err = " Incorrect answer\n" + error_msg +\ "\n Your output is {0}".format(repr(user_output)) |