diff options
author | Humberto Ibarra <humberto.ibarra.lopez@intel.com> | 2016-06-06 12:33:19 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-07 15:16:02 +0100 |
commit | c2dbcbbac48127cd014592443a6ac6062c95566f (patch) | |
tree | 437f8e08372a4b205caa71389b00962e571579de /scripts/lib | |
parent | cffea7f4c1db57738a1a5947ca4766d7ec51ca11 (diff) | |
download | poky-c2dbcbbac48127cd014592443a6ac6062c95566f.tar.gz |
scripts/lib/bsp/engine.py: Added missing keyword to fix syntax error
Commit af9f6b88fcc5d7fddff01595f9bcf2aba548720 introduced a syntax
error in engine.py by removing keyword "in". This patch adds it back.
[Yocto #9719]
(From meta-yocto rev: 49f02f3344617f8b077edf61e8f5ead05e8405eb)
Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/bsp/engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py index 3ed90fae95..0c162ebdb3 100644 --- a/scripts/lib/bsp/engine.py +++ b/scripts/lib/bsp/engine.py | |||
@@ -1654,7 +1654,7 @@ def get_properties(input_lines): | |||
1654 | props = line.props | 1654 | props = line.props |
1655 | item = {} | 1655 | item = {} |
1656 | name = props["name"] | 1656 | name = props["name"] |
1657 | for key, val props.items(): | 1657 | for key, val in props.items(): |
1658 | if not key == "name": | 1658 | if not key == "name": |
1659 | item[key] = val | 1659 | item[key] = val |
1660 | properties[name] = item | 1660 | properties[name] = item |