From 9cf6c8fb444fff957b7893fd5ce0a03506fcb24c Mon Sep 17 00:00:00 2001 From: Michael JIN Date: Sat, 11 Oct 2014 21:52:25 +0800 Subject: [PATCH] add 2 line before output --- RubyEval.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RubyEval.py b/RubyEval.py index 9c4ace6..48e098b 100644 --- a/RubyEval.py +++ b/RubyEval.py @@ -41,7 +41,7 @@ def eval_as_ruby(self, script): """ % script output, error = proc.communicate(ruby_input.encode('utf-8')) - output = output.strip() + output = '\n\n' + output.strip() if proc.poll(): output += "\n" + error