summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/config.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2020-08-27 15:37:02 +1000
committerChris Johns <chrisj@rtems.org>2020-08-28 11:37:53 +1000
commitc51f6342584f658ad56d9acde3c2cc7b3c8f5bca (patch)
treec870b651308dc67cf5db9dc425b98444b58ceeea /source-builder/sb/config.py
parentsb: Use shebang env python (diff)
downloadrtems-source-builder-c51f6342584f658ad56d9acde3c2cc7b3c8f5bca.tar.bz2
sb: Fix the imports on Python2
Updates #4037
Diffstat (limited to 'source-builder/sb/config.py')
-rw-r--r--source-builder/sb/config.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/source-builder/sb/config.py b/source-builder/sb/config.py
index db795b3..cd0bf94 100644
--- a/source-builder/sb/config.py
+++ b/source-builder/sb/config.py
@@ -45,8 +45,7 @@ except KeyboardInterrupt:
print('user terminated', file = sys.stderr)
sys.exit(1)
except:
- print('error: unknown application load error', file = sys.stderr)
- sys.exit(1)
+ raise
def _check_bool(value):
istrue = None