mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 09:49:32 +02:00
wic: don't use dict.keys and dict.has_key
Replaced calls of dict.keys and dict.has_key methods with the 'key in dict' statement. 'key in dict' is more pythonic, faster and readable. dict.has_key doesn't exist in Python 3. [YOCTO #9412] (From OE-Core rev: 003df7dfb932c551953fbf1bd769b3c31bd16fb4) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e36d04abb7
commit
52ce79dcba
@@ -68,7 +68,7 @@ class BaseImageCreator(object):
|
||||
}
|
||||
|
||||
# update setting from createopts
|
||||
for key in createopts.keys():
|
||||
for key in createopts:
|
||||
if key in optmap:
|
||||
option = optmap[key]
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user