summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-03-16 12:33:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-03-21 00:00:01 +0000
commit64b0867108d03c7e9215b80c59c1bba919e82994 (patch)
treec1fab9645c82b20122ce1438d80083df8e23959f
parent624e67b0d142e5dac946ebb63bcfad0625b88799 (diff)
downloadbitbake-64b0867108d03c7e9215b80c59c1bba919e82994.tar.gz
toasterui: fix error message parameter
Fix the error message parameter. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
-rw-r--r--lib/bb/ui/buildinfohelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/buildinfohelper.py b/lib/bb/ui/buildinfohelper.py
index b511abe7a..06a44905e 100644
--- a/lib/bb/ui/buildinfohelper.py
+++ b/lib/bb/ui/buildinfohelper.py
@@ -890,7 +890,7 @@ class BuildInfoHelper(object):
file_path__endswith = recipe_information['file_path'],
name = recipename)
except Recipe.DoesNotExist:
- logger.error("Could not find recipe for recipe_information %s name %s" % (pformat(recipe_information), name))
+ logger.error("Could not find recipe for recipe_information %s name %s" % (pformat(recipe_information), recipename))
raise
task_information = {}