summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/cookerdata.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py
index 48953a830b..91cc4347f6 100644
--- a/bitbake/lib/bb/cookerdata.py
+++ b/bitbake/lib/bb/cookerdata.py
@@ -300,13 +300,13 @@ class CookerDataBuilder(object):
300 300
301 self.data_hash = data_hash.hexdigest() 301 self.data_hash = data_hash.hexdigest()
302 except (SyntaxError, bb.BBHandledException): 302 except (SyntaxError, bb.BBHandledException):
303 raise bb.BBHandledException 303 raise bb.BBHandledException()
304 except bb.data_smart.ExpansionError as e: 304 except bb.data_smart.ExpansionError as e:
305 logger.error(str(e)) 305 logger.error(str(e))
306 raise bb.BBHandledException 306 raise bb.BBHandledException()
307 except Exception: 307 except Exception:
308 logger.exception("Error parsing configuration files") 308 logger.exception("Error parsing configuration files")
309 raise bb.BBHandledException 309 raise bb.BBHandledException()
310 310
311 # Create a copy so we can reset at a later date when UIs disconnect 311 # Create a copy so we can reset at a later date when UIs disconnect
312 self.origdata = self.data 312 self.origdata = self.data