From: Chris Larson Date: Sat, 19 Jun 2010 00:31:37 +0000 (-0700) Subject: Add missing 'return False' to the SystemExit handler in runAsyncCommand X-Git-Tag: 2011-1~5463 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fe9172ed552d0c9112e644bd02ba0d03c09f9f45;p=openembedded-core.git Add missing 'return False' to the SystemExit handler in runAsyncCommand (Bitbake rev: 966490c555cbdc09f52e1dcc68d3772c28ad9cee) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- 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: self.finishAsyncCommand(arg) else: self.finishAsyncCommand("Exited with %s" % arg) + return False except Exception: import traceback self.finishAsyncCommand(traceback.format_exc())