[oe-commits] [bitbake] branch python3 updated: py3 fixup

git at git.openembedded.org git at git.openembedded.org
Tue May 17 14:26:34 UTC 2016


rpurdie pushed a commit to branch python3
in repository bitbake.

The following commit(s) were added to refs/heads/python3 by this push:
       new  774ef67   py3 fixup
774ef67 is described below

commit 774ef6717a25454db2fc6b9cd34f8cf17d4076d3
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue May 17 15:25:42 2016 +0100

    py3 fixup
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bblayers/query.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bblayers/query.py b/lib/bblayers/query.py
index 7b8d891..6a98b56 100644
--- a/lib/bblayers/query.py
+++ b/lib/bblayers/query.py
@@ -127,7 +127,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:

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list