aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/bitbake13
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/bitbake b/bin/bitbake
index 126c254c0..a6ac45d66 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -55,19 +55,6 @@ class BBConfiguration(object):
self.pkgs_to_build = []
-def print_exception(exc, value, tb):
- """
- Print the exception to stderr, only showing the traceback if bitbake
- debugging is enabled.
- """
- if not bb.msg.debug_level[bb.msg.domain.Default]:
- tb = None
-
- sys.__excepthook__(exc, value, tb)
-
-sys.excepthook = print_exception
-
-
_warnings_showwarning = warnings.showwarning
def _showwarning(message, category, filename, lineno, file=None, line=None):
"""Display python warning messages using bb.msg"""