From 2a69358610077d134cef38d37f24eddfc73fc294 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 27 Jan 2013 15:41:21 -0800 Subject: bitbake: command: Add missing import traceback Without this, if an exception occurs the server will silently crash with no feedback to the user about why (since traceback isn't imported). (Bitbake rev: e637a635bf7b5a9a2e9dc20afc18aceec98d578f) Signed-off-by: Richard Purdie --- bitbake/lib/bb/command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 00b854e240..c08e2ce1f5 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py @@ -69,6 +69,7 @@ class Command: except CommandError as exc: return None, exc.args[0] except Exception: + import traceback return None, traceback.format_exc() else: return result, None -- cgit v1.2.3-54-g00ecf