diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/command.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 3f28bca257..39a2e18a02 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 |