summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 24ff341045..a7cac97e2d 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -71,7 +71,7 @@ class Command:
71 result = command_method(self, commandline) 71 result = command_method(self, commandline)
72 except CommandError as exc: 72 except CommandError as exc:
73 return None, exc.args[0] 73 return None, exc.args[0]
74 except Exception: 74 except (Exception, SystemExit):
75 import traceback 75 import traceback
76 return None, traceback.format_exc() 76 return None, traceback.format_exc()
77 else: 77 else: