diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-07 13:56:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-09 14:06:51 +0100 |
commit | 534325fd1fb5f4b1d6c652e73d744061154f1eff (patch) | |
tree | 48de1c053da50b8eeded9165ce5827de90ab82c2 /meta/classes/image.bbclass | |
parent | e16faa55daca2a87190ce66dc98a37906ecf90af (diff) | |
download | poky-534325fd1fb5f4b1d6c652e73d744061154f1eff.tar.gz |
image/kernel-module-split/eglibc-ld.inc: Remove has_key() usage
The has_key() attribute has been removed in python 3 since there is better
syntax available. Use the improved syntax.
(From OE-Core rev: 3dff13793e875ff58cc38c4a960caca9b6969843)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 979921f58c..251bc9abfd 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -368,7 +368,7 @@ for dir in dirs.split(): | |||
368 | key=str(os.path.join("/",os.path.relpath(item,dir))) | 368 | key=str(os.path.join("/",os.path.relpath(item,dir))) |
369 | 369 | ||
370 | valid=True; | 370 | valid=True; |
371 | if files.has_key(key): | 371 | if key in files: |
372 | #check whether the file is allow to replace | 372 | #check whether the file is allow to replace |
373 | if allow_rep.match(key): | 373 | if allow_rep.match(key): |
374 | valid=True | 374 | valid=True |