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)
downloadpoky-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):
237 if not line: 237 if not line:
238 break 238 break
239 if not quiet: 239 if not quiet:
240 print line 240 print line,
241 output += line 241 output += line
242 242
243 status = stdout_handle.close() or 0 243 status = stdout_handle.close() or 0