summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdeheader2
1 files changed, 1 insertions, 1 deletions
diff --git a/deheader b/deheader
index f938465..3049be7 100755
--- a/deheader
+++ b/deheader
@@ -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: