Move a var definition in cooker.parse_next

(Bitbake rev: 1b378ddf3dc9b2aa5384e8b28945b63fc623a6a4)

Signed-off-by: Chris Larson <clarson@kergoth.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson 2010-04-20 18:47:36 -07:00 committed by Richard Purdie
parent 8bc7ebb4ae
commit 4802a9d07a
1 changed files with 1 additions and 1 deletions

View File

@ -970,9 +970,9 @@ class CookerParser:
self.pointer = 0
def parse_next(self):
cooker = self.cooker
if self.pointer < len(self.filelist):
f = self.filelist[self.pointer]
cooker = self.cooker
try:
fromCache, skipped, virtuals = cooker.bb_cache.loadData(f, cooker.configuration.data, cooker.status)