From 966490c555cbdc09f52e1dcc68d3772c28ad9cee Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Fri, 18 Jun 2010 17:31:37 -0700 Subject: [PATCH] Add missing 'return False' to the SystemExit handler in runAsyncCommand Signed-off-by: Chris Larson --- lib/bb/command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/bb/command.py b/lib/bb/command.py index 32d5b5ba..9a8d689e 100644 --- a/lib/bb/command.py +++ b/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()) -- 2.20.1