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/runqueue.py | |
parent | 20dc452614c991d1a4f5b7dcc1307cd03cba0c55 (diff) | |
download | poky-ef1de9ecaf73e28234d284b79ec45e084d0f0c53.tar.gz |
Apply some 2to3 refactorings
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 93fff5d27b..a4aea6c004 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -928,7 +928,7 @@ class RunQueue: | |||
928 | while True: | 928 | while True: |
929 | task = None | 929 | task = None |
930 | if self.stats.active < self.number_tasks: | 930 | if self.stats.active < self.number_tasks: |
931 | task = self.sched.next() | 931 | task = next(self.sched) |
932 | if task is not None: | 932 | if task is not None: |
933 | fn = self.taskData.fn_index[self.runq_fnid[task]] | 933 | fn = self.taskData.fn_index[self.runq_fnid[task]] |
934 | 934 | ||