[U-Boot] [PATCH] moveconfig: fix error message in do_autoconf()
Chris Packham
judge.packham at gmail.com
Sun Aug 27 08:00:51 UTC 2017
Move the % arch outside the double quote so that the missing toolchain
message is displayed correctly.
Signed-off-by: Chris Packham <judge.packham at gmail.com>
---
tools/moveconfig.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/moveconfig.py b/tools/moveconfig.py
index 8a038501929c..45742dc2e6b9 100755
--- a/tools/moveconfig.py
+++ b/tools/moveconfig.py
@@ -1170,7 +1170,7 @@ class Slot:
toolchain = self.toolchains.Select(arch)
except ValueError:
self.log += color_text(self.options.color, COLOR_YELLOW,
- "Tool chain for '%s' is missing. Do nothing.\n % arch")
+ "Tool chain for '%s' is missing. Do nothing.\n" % arch)
self.finish(False)
return
env = toolchain.MakeEnvironment(False)
--
2.14.1
More information about the U-Boot
mailing list