From c50bc91cd459b55d6f73efdebc8a8c8428d0975e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 17 Sep 2013 19:15:26 +0100 Subject: [PATCH] bitbake: Revert "bb.fatal: Raise a BBHandledException instead of exiting" Sanity test failures are no longer fatal with this change so whilst its the right idea, the code paths need more work. This reverts commit a50017ba71250e1710a6425b60ac7e3f03d88295. Signed-off-by: Richard Purdie --- bitbake/lib/bb/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py index 018b744..64491ff 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py @@ -99,7 +99,8 @@ def error(*args): def fatal(*args): logger.critical(''.join(args)) - raise BBHandledException() + sys.exit(1) + def deprecated(func, name=None, advice=""): """This is a decorator which can be used to mark functions -- 2.7.4