From ad9629d5b34f1f0e3552a20eab4d434a300764e4 Mon Sep 17 00:00:00 2001 From: "chrome-bot@google.com" Date: Mon, 22 Dec 2008 17:52:33 +0000 Subject: Fix the output line endinf git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7354 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/purify/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/purify/common.py') 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() -- cgit v1.1