]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
scripts/lib/bsp/engine.py: Added missing keyword to fix syntax error
authorHumberto Ibarra <humberto.ibarra.lopez@intel.com>
Mon, 6 Jun 2016 17:33:19 +0000 (12:33 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 6 Jun 2016 21:46:49 +0000 (22:46 +0100)
Commit af9f6b88fcc5d7fddff01595f9bcf2aba548720 introduced a syntax
error in engine.py by removing keyword "in". This patch adds it back.

[Yocto #9719]

Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/bsp/engine.py

index 3ed90fae95eb86287e33875364750e7c55f10e15..0c162ebdb3ebbf76ae495f50675ffb88ba63247d 100644 (file)
@@ -1654,7 +1654,7 @@ def get_properties(input_lines):
         props = line.props
         item = {}
         name = props["name"]
-        for key, val props.items():
+        for key, val in props.items():
             if not key == "name":
                 item[key] = val
         properties[name] = item