diff options
-rwxr-xr-x | deheader | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1353,7 +1353,7 @@ def testcompile(source, maker, msg="", verbosity=0, showerrs=False): (status, output) = commands.getstatusoutput(command) end = time.time() if (os.WIFEXITED(status) and os.WEXITSTATUS(status) != 0 and showerrs) or verbosity >= COMMAND_DEBUG: - sys.stdout.write(output) + sys.stdout.write(output + "\n") if status: explain = "failed" if verbosity >= PROGRESS_DEBUG: |