run-tests: print a new line before writing the diff
authorIdan Kamara <idankk86@gmail.com>
Sat, 30 Apr 2011 15:20:27 +0300
changeset 14062 643381286e0c
parent 14061 611d2f8a4ba2
child 14063 87ebf72878ed
run-tests: print a new line before writing the diff
tests/run-tests.py
--- a/tests/run-tests.py	Sat Apr 30 10:56:43 2011 -0500
+++ b/tests/run-tests.py	Sat Apr 30 15:20:27 2011 +0300
@@ -303,6 +303,7 @@
     return missing, failed
 
 def showdiff(expected, output, ref, err):
+    print
     for line in difflib.unified_diff(expected, output, ref, err):
         sys.stdout.write(line)