From patchwork Fri Jan 11 07:03:02 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [for-denzil,2/3] bitbake: command: Add missing import traceback Date: Fri, 11 Jan 2013 07:03:02 -0000 From: Matthew McClintock X-Patchwork-Id: 42483 Message-Id: <1357887783-25188-2-git-send-email-msm@freescale.com> To: From: Richard Purdie 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 00b854e..c08e2ce 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