diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-10-04 22:31:14 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-05 00:12:25 +0100 |
commit | 87f844e533adfc229a5d26857a82cc6b125216c8 (patch) | |
tree | 5e89ada54d71ec6353354f32e60159e76dfb153c /scripts/lib | |
parent | 98b6420952cbf73ddd1318f36c68d575c330eb71 (diff) | |
download | openembedded-core-87f844e533adfc229a5d26857a82cc6b125216c8.tar.gz openembedded-core-87f844e533adfc229a5d26857a82cc6b125216c8.tar.bz2 openembedded-core-87f844e533adfc229a5d26857a82cc6b125216c8.zip |
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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/devtool/standard.py | 2 |
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) |