From 7780482772d005c77825dc3e99e63f00911156bf Mon Sep 17 00:00:00 2001 From: Anuj Mittal Date: Thu, 15 Mar 2018 13:59:51 +0800 Subject: checklayer: remove reference to undefined class LayerError doesn't exist and will lead to an error when this failure code path is hit. Signed-off-by: Anuj Mittal Signed-off-by: Ross Burton --- scripts/lib/checklayer/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/checklayer/__init__.py b/scripts/lib/checklayer/__init__.py index 63952616ba..288c457822 100644 --- a/scripts/lib/checklayer/__init__.py +++ b/scripts/lib/checklayer/__init__.py @@ -42,8 +42,8 @@ def _get_layer_collections(layer_path, lconf=None, data=None): ldata.setVar('LAYERDIR', layer_path) try: ldata = bb.parse.handle(lconf, ldata, include=True) - except BaseException as exc: - raise LayerError(exc) + except: + raise RuntimeError("Parsing of layer.conf from layer: %s failed" % layer_path) ldata.expandVarref('LAYERDIR') collections = (ldata.getVar('BBFILE_COLLECTIONS') or '').split() -- cgit 1.2.3-korg