diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index b2187d7d5f..fe6fc99c1f 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -2161,7 +2161,7 @@ class CookerParser(object): | |||
2161 | self.error += 1 | 2161 | self.error += 1 |
2162 | etype, value, tb = sys.exc_info() | 2162 | etype, value, tb = sys.exc_info() |
2163 | if hasattr(value, "recipe"): | 2163 | if hasattr(value, "recipe"): |
2164 | logger.error('Unable to parse %s', value.recipe, | 2164 | logger.error('Unable to parse %s' % value.recipe, |
2165 | exc_info=(etype, value, exc.traceback)) | 2165 | exc_info=(etype, value, exc.traceback)) |
2166 | else: | 2166 | else: |
2167 | # Most likely, an exception occurred during raising an exception | 2167 | # Most likely, an exception occurred during raising an exception |