summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-xbitbake/bin/bitbake13
1 files changed, 0 insertions, 13 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 9580784e55..65739106be 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -55,19 +55,6 @@ class BBConfiguration(object):
55 self.pkgs_to_build = [] 55 self.pkgs_to_build = []
56 56
57 57
58def print_exception(exc, value, tb):
59 """
60 Print the exception to stderr, only showing the traceback if bitbake
61 debugging is enabled.
62 """
63 if not bb.msg.debug_level[bb.msg.domain.Default]:
64 tb = None
65
66 sys.__excepthook__(exc, value, tb)
67
68sys.excepthook = print_exception
69
70
71_warnings_showwarning = warnings.showwarning 58_warnings_showwarning = warnings.showwarning
72def _showwarning(message, category, filename, lineno, file=None, line=None): 59def _showwarning(message, category, filename, lineno, file=None, line=None):
73 """Display python warning messages using bb.msg""" 60 """Display python warning messages using bb.msg"""