diff options
author | Humberto Ibarra <humberto.ibarra.lopez@intel.com> | 2016-06-09 12:07:39 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-12 23:47:19 +0100 |
commit | a1a0ce1a0064e29159555011ebd667192132e0ce (patch) | |
tree | f7f2bce758a3727e441eabbf7085f8c3fb4b3566 | |
parent | 7fc6c4581476699243c1e1fa4d7fcee26385b642 (diff) | |
download | poky-a1a0ce1a0064e29159555011ebd667192132e0ce.tar.gz |
scripts/lib/bsp/engine.py: Added missing parentheses to string formatting
Commit ab75075e7941c8c2ec429c180976702cd311c978 broke the string formatting
for multiple arguments. Since parentheses were removed the formatting considers
only first argument instead of all of them. Fixed parentheses on the formatting.
[YOCTO #9723]
(From meta-yocto rev: d6d641d5b4bb0c8b9acd5cd1341a4a3214bff086)
Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 c44bbc51c9..85f095ebcb 100644 --- a/scripts/lib/bsp/engine.py +++ b/scripts/lib/bsp/engine.py | |||
@@ -1614,7 +1614,7 @@ def yocto_bsp_create(machine, arch, scripts_path, bsp_output_dir, codedump, prop | |||
1614 | """ | 1614 | """ |
1615 | yocto_common_create(machine, arch, scripts_path, bsp_output_dir, codedump, properties_file, properties) | 1615 | yocto_common_create(machine, arch, scripts_path, bsp_output_dir, codedump, properties_file, properties) |
1616 | 1616 | ||
1617 | print("\nNew %s BSP created in %s" % arch, bsp_output_dir) | 1617 | print("\nNew %s BSP created in %s" % (arch, bsp_output_dir)) |
1618 | 1618 | ||
1619 | 1619 | ||
1620 | def print_dict(items, indent = 0): | 1620 | def print_dict(items, indent = 0): |