From: Humberto Ibarra Date: Thu, 9 Jun 2016 17:07:39 +0000 (-0500) Subject: scripts/lib/bsp/engine.py: Added missing parentheses to string formatting X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1a0ce1a0064e29159555011ebd667192132e0ce;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py index c44bbc51c91..85f095ebcbf 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 """ yocto_common_create(machine, arch, scripts_path, bsp_output_dir, codedump, properties_file, properties) - print("\nNew %s BSP created in %s" % arch, bsp_output_dir) + print("\nNew %s BSP created in %s" % (arch, bsp_output_dir)) def print_dict(items, indent = 0):