summaryrefslogtreecommitdiffstats
path: root/lib/bb/command.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-06-18 17:31:37 -0700
committerChris Larson <chris_larson@mentor.com>2010-06-18 18:14:51 -0700
commit966490c555cbdc09f52e1dcc68d3772c28ad9cee (patch)
treeda80bf4934d578108c81c2435419f6acd905255a /lib/bb/command.py
parent58e1b0a5dbd0f1ca137ad7ed1bd7ad9975a20fb7 (diff)
downloadbitbake-966490c555cbdc09f52e1dcc68d3772c28ad9cee.tar.gz
Add missing 'return False' to the SystemExit handler in runAsyncCommand
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/command.py')
-rw-r--r--lib/bb/command.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/command.py b/lib/bb/command.py
index 32d5b5bab..9a8d689e2 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())