1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

Fix the debug level check in print_exception

(Bitbake rev: 9cb52edf9198fe6db735abbb61d0c4026c97a8d9)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson
2010-04-20 12:23:41 -07:00
committed by Richard Purdie
parent c3eae29efa
commit 6f52061844
+1 -1
View File
@@ -60,7 +60,7 @@ 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['default']:
if not bb.msg.debug_level[bb.msg.domain.Default]:
tb = None
sys.__excepthook__(exc, value, tb)