summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/command.py1
1 files changed, 1 insertions, 0 deletions
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:
69 except CommandError as exc: 69 except CommandError as exc:
70 return None, exc.args[0] 70 return None, exc.args[0]
71 except Exception: 71 except Exception:
72 import traceback
72 return None, traceback.format_exc() 73 return None, traceback.format_exc()
73 else: 74 else:
74 return result, None 75 return result, None