aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-10-04 05:38:09 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2016-10-04 22:29:42 +1300
commitb2b7d77e63ab7c3f8d9c0591c4e18080f86cff04 (patch)
treee1e26978b35fd5a88af4c3fe2b9198eb807c841a
parent21cc2a3f63ea260dbf6b50e2fd4dd50cacdd9935 (diff)
downloadopenembedded-core-contrib-b2b7d77e63ab7c3f8d9c0591c4e18080f86cff04.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. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-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 83191450be..c8d7eb1b2b 100644
--- a/scripts/lib/devtool/standard.py
+++ b/scripts/lib/devtool/standard.py
@@ -64,7 +64,7 @@ def add(args, config, basepath, workspace):
args.srctree = args.recipename
args.recipename = None
elif os.path.isdir(args.recipename):
- logger.warn('Ambiguous argument %s - assuming you mean it to be the recipe name')
+ logger.warn('Ambiguous argument "%s" - assuming you mean it to be the recipe name' % args.recipename)
if args.srctree and os.path.isfile(args.srctree):
args.fetchuri = 'file://' + os.path.abspath(args.srctree)