diff options
Diffstat (limited to 'bitbake/lib/bb/command.py')
| -rw-r--r-- | bitbake/lib/bb/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 0559ffc07c..caa3e4d457 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
| @@ -110,7 +110,7 @@ class Command: | |||
| 110 | return False | 110 | return False |
| 111 | except SystemExit as exc: | 111 | except SystemExit as exc: |
| 112 | arg = exc.args[0] | 112 | arg = exc.args[0] |
| 113 | if isinstance(arg, basestring): | 113 | if isinstance(arg, str): |
| 114 | self.finishAsyncCommand(arg) | 114 | self.finishAsyncCommand(arg) |
| 115 | else: | 115 | else: |
| 116 | self.finishAsyncCommand("Exited with %s" % arg) | 116 | self.finishAsyncCommand("Exited with %s" % arg) |
