summaryrefslogtreecommitdiffstats
path: root/bitbake
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:25 +0000
commit9752757da07f55b62574f9ea02b8744346513649 (patch)
tree969cb4e7cdd03a4eb5a58315a327f87f98cab866 /bitbake
parent0dc4a628ae3a2efe3edf5351fba975bf289e7558 (diff)
downloadpoky-9752757da07f55b62574f9ea02b8744346513649.tar.gz
bitbake: toasterui: fix error message parameter
Fix the error message parameter. (Bitbake rev: 64b0867108d03c7e9215b80c59c1bba919e82994) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/buildinfohelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index b511abe7ad..06a44905ea 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -890,7 +890,7 @@ class BuildInfoHelper(object):
890 file_path__endswith = recipe_information['file_path'], 890 file_path__endswith = recipe_information['file_path'],
891 name = recipename) 891 name = recipename)
892 except Recipe.DoesNotExist: 892 except Recipe.DoesNotExist:
893 logger.error("Could not find recipe for recipe_information %s name %s" % (pformat(recipe_information), name)) 893 logger.error("Could not find recipe for recipe_information %s name %s" % (pformat(recipe_information), recipename))
894 raise 894 raise
895 895
896 task_information = {} 896 task_information = {}