From e637a635bf7b5a9a2e9dc20afc18aceec98d578f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 14 Dec 2012 12:26:19 +0000 Subject: 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). Signed-off-by: Richard Purdie --- lib/bb/command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/bb/command.py b/lib/bb/command.py index 3f28bca25..39a2e18a0 100644 --- a/lib/bb/command.py +++ b/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 1.2.3-korg