summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-08-09 13:54:30 +0000
committerRichard Purdie <richard@openedhand.com>2007-08-09 13:54:30 +0000
commit62f662256a6cd1e55849e98715d0d3a654d7f78a (patch)
tree380f6293fb47661303a57f186306c8329f459d84 /bitbake
parent74a3de28a8daf46ac22ac78b36552db4f8572a50 (diff)
downloadopenembedded-core-62f662256a6cd1e55849e98715d0d3a654d7f78a.tar.gz
bitbake fetch/__init__.py: Don't print double newlines
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2474 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py
index 9333e2b600..f235526452 100644
--- a/bitbake/lib/bb/fetch/__init__.py
+++ b/bitbake/lib/bb/fetch/__init__.py
@@ -237,7 +237,7 @@ def runfetchcmd(cmd, d, quiet = False):
if not line:
break
if not quiet:
- print line
+ print line,
output += line
status = stdout_handle.close() or 0