summaryrefslogtreecommitdiffstats
path: root/tools/purify
diff options
context:
space:
mode:
authorchrome-bot@google.com <chrome-bot@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-22 17:52:33 +0000
committerchrome-bot@google.com <chrome-bot@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-22 17:52:33 +0000
commitad9629d5b34f1f0e3552a20eab4d434a300764e4 (patch)
tree9df07fa41277661c266d9e205e2a372ad904843c /tools/purify
parent99404d6cbcd03d61a23bc0f1ef6aaf6831861ed1 (diff)
downloadchromium_src-ad9629d5b34f1f0e3552a20eab4d434a300764e4.zip
chromium_src-ad9629d5b34f1f0e3552a20eab4d434a300764e4.tar.gz
chromium_src-ad9629d5b34f1f0e3552a20eab4d434a300764e4.tar.bz2
Fix the output line endinf
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7354 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/purify')
-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()