diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-20 12:08:07 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:37 +0100 |
commit | ef1de9ecaf73e28234d284b79ec45e084d0f0c53 (patch) | |
tree | 417f87922c1a2fa4a3bbd4b35e0772221f96641e /bitbake/lib/bb/fetch | |
parent | 20dc452614c991d1a4f5b7dcc1307cd03cba0c55 (diff) | |
download | openembedded-core-ef1de9ecaf73e28234d284b79ec45e084d0f0c53.tar.gz openembedded-core-ef1de9ecaf73e28234d284b79ec45e084d0f0c53.tar.bz2 openembedded-core-ef1de9ecaf73e28234d284b79ec45e084d0f0c53.zip |
Apply some 2to3 refactorings
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 2 |
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): stdout_handle = os.popen(cmd + " 2>&1", "r") output = "" - while 1: + while True: line = stdout_handle.readline() if not line: break |