From 0f2c59367a649de5f57acdccfb4f1fdba9cde730 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 12 May 2016 08:30:35 +0100 Subject: bitbake: bitbake: Convert to python 3 Various misc changes to convert bitbake to python3 which don't warrant separation into separate commits. (Bitbake rev: d0f904d407f57998419bd9c305ce53e5eaa36b24) Signed-off-by: Richard Purdie --- bitbake/lib/bblayers/query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/bblayers/query.py') diff --git a/bitbake/lib/bblayers/query.py b/bitbake/lib/bblayers/query.py index b5b98f7639..b8c817b124 100644 --- a/bitbake/lib/bblayers/query.py +++ b/bitbake/lib/bblayers/query.py @@ -128,7 +128,7 @@ skipped recipes will also be listed, with a " (skipped)" suffix. # Ensure we list skipped recipes # We are largely guessing about PN, PV and the preferred version here, # but we have no choice since skipped recipes are not fully parsed - skiplist = self.tinfoil.cooker.skiplist.keys() + skiplist = list(self.tinfoil.cooker.skiplist.keys()) skiplist.sort( key=lambda fileitem: self.tinfoil.cooker.collection.calc_bbfile_priority(fileitem) ) skiplist.reverse() for fn in skiplist: @@ -275,7 +275,7 @@ Lists recipes with the bbappends that apply to them as subitems. def show_appends_for_skipped(self): filenames = [os.path.basename(f) - for f in self.tinfoil.cooker.skiplist.iterkeys()] + for f in self.tinfoil.cooker.skiplist.keys()] return self.show_appends_output(filenames, None, " (skipped)") def show_appends_output(self, filenames, best_filename, name_suffix = ''): -- cgit v1.2.3-54-g00ecf