From 1ec537e9de5916fe228f91d3a09c98f608724aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20H=C3=BCwe?= Date: Mon, 27 Apr 2009 18:30:00 +0000 Subject: [PATCH] - fixed #498330 ("buildlog inserts bogus newlines") --- osc/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/core.py b/osc/core.py index b31296a4..833cfdad 100755 --- a/osc/core.py +++ b/osc/core.py @@ -2880,7 +2880,7 @@ def print_buildlog(apiurl, prj, package, platform, arch, offset = 0): u = makeurl(apiurl, ['build', prj, platform, arch, package, '_log'], query=query) for data in streamfile(u): offset += len(data) - print data + sys.stdout.write(data) if start_offset == offset: break