diff options
author | Prabhu Ramachandran | 2016-09-29 12:33:08 +0530 |
---|---|---|
committer | GitHub | 2016-09-29 12:33:08 +0530 |
commit | 8b410d3764b8f0e5c7a14e292a5583ef93c4257e (patch) | |
tree | 18b9ca9a9dd202c61a83244337859fb4ba8b4e6c /yaksh/python_stdio_evaluator.py | |
parent | 8e4ead8ab4caa9366e5357840e1912cbfb8cdb85 (diff) | |
parent | 086620367c481009c9caed68660865ca127a9520 (diff) | |
download | online_test-8b410d3764b8f0e5c7a14e292a5583ef93c4257e.tar.gz online_test-8b410d3764b8f0e5c7a14e292a5583ef93c4257e.tar.bz2 online_test-8b410d3764b8f0e5c7a14e292a5583ef93c4257e.zip |
Merge pull request #141 from maheshgudi/refactor_stdio
Refactor stdio
Diffstat (limited to 'yaksh/python_stdio_evaluator.py')
-rw-r--r-- | yaksh/python_stdio_evaluator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yaksh/python_stdio_evaluator.py b/yaksh/python_stdio_evaluator.py index 4a02267..2cfd9c8 100644 --- a/yaksh/python_stdio_evaluator.py +++ b/yaksh/python_stdio_evaluator.py @@ -53,11 +53,11 @@ class PythonStdioEvaluator(CodeEvaluator): tb = None if self.output_value == expected_output: success = True - err = "Correct Answer" + err = "Correct answer" else: success = False err = dedent(""" - Incorrect Answer: + Incorrect answer: Given input - {0} Expected output - {1} Your output - {2} |