summaryrefslogtreecommitdiffstats
path: root/bin/bitbake
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-20 12:23:41 -0700
committerChris Larson <chris_larson@mentor.com>2010-04-20 13:45:15 -0700
commit9cb52edf9198fe6db735abbb61d0c4026c97a8d9 (patch)
tree47fd5dad75169039769e7ca2cd9f71c7058f3140 /bin/bitbake
parentfe36a726b9f930bbd6fd758c0aee78559e95f02b (diff)
downloadbitbake-9cb52edf9198fe6db735abbb61d0c4026c97a8d9.tar.gz
Fix the debug level check in print_exception
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'bin/bitbake')
-rwxr-xr-xbin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake b/bin/bitbake
index 7c484a2f7..8ff275100 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -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)