summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch/__init__.py')
-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 e87223ad6b..651fea8873 100644
--- a/bitbake/lib/bb/fetch/__init__.py
+++ b/bitbake/lib/bb/fetch/__init__.py
@@ -409,7 +409,7 @@ def runfetchcmd(cmd, d, quiet = False):
409 stdout_handle = os.popen(cmd + " 2>&1", "r") 409 stdout_handle = os.popen(cmd + " 2>&1", "r")
410 output = "" 410 output = ""
411 411
412 while 1: 412 while True:
413 line = stdout_handle.readline() 413 line = stdout_handle.readline()
414 if not line: 414 if not line:
415 break 415 break