diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 1be1874cbc..ead5f366b0 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -357,6 +357,8 @@ def better_exec(code, context, text = None, realfile = "<code>"): | |||
357 | except bb.BBHandledException: | 357 | except bb.BBHandledException: |
358 | # Error already shown so passthrough | 358 | # Error already shown so passthrough |
359 | raise | 359 | raise |
360 | except bb.data_smart.ExpansionError: | ||
361 | raise | ||
360 | except Exception as e: | 362 | except Exception as e: |
361 | (t, value, tb) = sys.exc_info() | 363 | (t, value, tb) = sys.exc_info() |
362 | 364 | ||