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>
This commit is contained in:
Chris Larson 2010-06-18 17:31:37 -07:00 committed by Richard Purdie
parent 526837e1c1
commit fe9172ed55
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ class Command:
self.finishAsyncCommand(arg)
else:
self.finishAsyncCommand("Exited with %s" % arg)
return False
except Exception:
import traceback
self.finishAsyncCommand(traceback.format_exc())