mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
bitbake: cooker: Fix log message syntax
Ensure we pass the string parameter correctly. (Bitbake rev: 7ed82bd1fe7bdd93b0614119c42eb218dc5d83e6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -2161,7 +2161,7 @@ class CookerParser(object):
|
|||||||
self.error += 1
|
self.error += 1
|
||||||
etype, value, tb = sys.exc_info()
|
etype, value, tb = sys.exc_info()
|
||||||
if hasattr(value, "recipe"):
|
if hasattr(value, "recipe"):
|
||||||
logger.error('Unable to parse %s', value.recipe,
|
logger.error('Unable to parse %s' % value.recipe,
|
||||||
exc_info=(etype, value, exc.traceback))
|
exc_info=(etype, value, exc.traceback))
|
||||||
else:
|
else:
|
||||||
# Most likely, an exception occurred during raising an exception
|
# Most likely, an exception occurred during raising an exception
|
||||||
|
|||||||
Reference in New Issue
Block a user