summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/__init__.py')
-rw-r--r--bitbake/lib/bb/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py
index 018b7442bf..64491ff7f7 100644
--- a/bitbake/lib/bb/__init__.py
+++ b/bitbake/lib/bb/__init__.py
@@ -99,7 +99,8 @@ def error(*args):
99 99
100def fatal(*args): 100def fatal(*args):
101 logger.critical(''.join(args)) 101 logger.critical(''.join(args))
102 raise BBHandledException() 102 sys.exit(1)
103
103 104
104def deprecated(func, name=None, advice=""): 105def deprecated(func, name=None, advice=""):
105 """This is a decorator which can be used to mark functions 106 """This is a decorator which can be used to mark functions