diff options
| -rw-r--r-- | bitbake/lib/bb/command.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index f8c6a03bb9..dd77cdd6e2 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
| @@ -81,8 +81,12 @@ class Command: | |||
| 81 | result = command_method(self, commandline) | 81 | result = command_method(self, commandline) |
| 82 | except CommandError as exc: | 82 | except CommandError as exc: |
| 83 | return None, exc.args[0] | 83 | return None, exc.args[0] |
| 84 | except (Exception, SystemExit): | 84 | except (Exception, SystemExit) as exc: |
| 85 | import traceback | 85 | import traceback |
| 86 | if isinstance(exc, bb.BBHandledException): | ||
| 87 | # We need to start returning real exceptions here. Until we do, we can't | ||
| 88 | # tell if an exception is an instance of bb.BBHandledException | ||
| 89 | return None, "bb.BBHandledException()\n" + traceback.format_exc() | ||
| 86 | return None, traceback.format_exc() | 90 | return None, traceback.format_exc() |
| 87 | else: | 91 | else: |
| 88 | return result, None | 92 | return result, None |
