summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-10-04 22:31:14 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-08 23:47:13 +0000
commit95e3d7108062fa5aa6db3670d22940a4b9513f6b (patch)
treeb8382c5def7e3eec5396fe5494c415c2caf56359
parent2de1a5cefb5a094a55d8e2bc0fa7711b6a2efdc7 (diff)
downloadpoky-95e3d7108062fa5aa6db3670d22940a4b9513f6b.tar.gz
devtool: add: fix error message when only specifying a recipe name
We were supposed to be printing out the specified recipe name here but I forgot to specify a parameter for the string. (From OE-Core rev: 87f844e533adfc229a5d26857a82cc6b125216c8) (From OE-Core rev: 9bff81f882f30b9f317516330608c203601a4769) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--scripts/lib/devtool/standard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py
index cdd76dc9a7..ae6517e167 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -63,7 +63,7 @@ def add(args, config, basepath, workspace):
63 args.srctree = args.recipename 63 args.srctree = args.recipename
64 args.recipename = None 64 args.recipename = None
65 elif os.path.isdir(args.recipename): 65 elif os.path.isdir(args.recipename):
66 logger.warn('Ambiguous argument %s - assuming you mean it to be the recipe name') 66 logger.warn('Ambiguous argument "%s" - assuming you mean it to be the recipe name' % args.recipename)
67 67
68 if args.fetch: 68 if args.fetch:
69 if args.fetchuri: 69 if args.fetchuri: