run-tests: print a new line before writing the diff stable
authorIdan Kamara <idankk86@gmail.com>
Sat, 30 Apr 2011 15:20:27 +0300
branchstable
changeset 923 8212da2b01eb
parent 921 abb2a67ce631
child 924 08aeedc73cb7
child 925 b73d6eb16638
run-tests: print a new line before writing the diff [ original upstream message ]
tests/run-tests.py
--- a/tests/run-tests.py	Fri Apr 29 20:29:22 2011 +0300
+++ 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)