aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/exceptions.py')
-rw-r--r--lib/bb/exceptions.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/bb/exceptions.py b/lib/bb/exceptions.py
index 13269de8c..e134ae136 100644
--- a/lib/bb/exceptions.py
+++ b/lib/bb/exceptions.py
@@ -53,3 +53,9 @@ def format_exception(etype, value, tb, context=1, limit=None, formatter=None):
formatted.extend(format_extracted(tb, formatter, limit))
formatted.extend(traceback.format_exception_only(etype, value))
return formatted
+
+def to_string(exc):
+ if isinstance(exc, SystemExit):
+ if not isinstance(exc.code, basestring):
+ return 'Exited with "%d"' % exc.code
+ return str(exc)