summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/purify/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/purify/common.py b/tools/purify/common.py
index 13555f6..a684bb6 100644
--- a/tools/purify/common.py
+++ b/tools/purify/common.py
@@ -54,7 +54,7 @@ def _print_line(line, flush=True):
# using \r\n automatically. On buildbot, this winds up being read by a master
# running on Linux, so this is a pain. Unfortunately, it doesn't matter what
# we do here, so just leave this comment for future reference.
- print line,
+ print line.rstrip() + '\n',
if flush:
sys.stdout.flush()