diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-18 17:31:37 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:37 +0100 |
commit | fe9172ed552d0c9112e644bd02ba0d03c09f9f45 (patch) | |
tree | 47b3c4cf8631cf194cb1e1c71314bf52c9d5f12d | |
parent | 526837e1c16e7d5ced40bea6463e58641c94ba05 (diff) | |
download | poky-fe9172ed552d0c9112e644bd02ba0d03c09f9f45.tar.gz |
Add missing 'return False' to the SystemExit handler in runAsyncCommand
(Bitbake rev: 966490c555cbdc09f52e1dcc68d3772c28ad9cee)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-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 32d5b5bab6..9a8d689e2a 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py | |||
@@ -98,6 +98,7 @@ class Command: | |||
98 | self.finishAsyncCommand(arg) | 98 | self.finishAsyncCommand(arg) |
99 | else: | 99 | else: |
100 | self.finishAsyncCommand("Exited with %s" % arg) | 100 | self.finishAsyncCommand("Exited with %s" % arg) |
101 | return False | ||
101 | except Exception: | 102 | except Exception: |
102 | import traceback | 103 | import traceback |
103 | self.finishAsyncCommand(traceback.format_exc()) | 104 | self.finishAsyncCommand(traceback.format_exc()) |