[elbe-devel] [PATCH 8/9] elbepack: commands: preprocess: drop custom error handling
Thomas Weißschuh
thomas.weissschuh at linutronix.de
Fri Mar 21 14:31:32 CET 2025
The default error handling and formatting from elbepack.main is enough.
Drop the custom logic.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
elbepack/commands/preprocess.py | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/elbepack/commands/preprocess.py b/elbepack/commands/preprocess.py
index 62f79c2bfe0efb25a0ef5db71d475cddef21f3dc..9025b6c6d03724c911e5ce3c7c55f0abfcb35c66 100644
--- a/elbepack/commands/preprocess.py
+++ b/elbepack/commands/preprocess.py
@@ -3,10 +3,9 @@
# SPDX-FileCopyrightText: 2017 Linutronix GmbH
import argparse
-import sys
from elbepack.config import add_argument_soapport, add_argument_sshport
-from elbepack.xmlpreprocess import XMLPreprocessError, xmlpreprocess
+from elbepack.xmlpreprocess import xmlpreprocess
def _add_arguments(parser):
@@ -34,10 +33,6 @@ def run_command(argv):
_add_arguments(aparser)
args = aparser.parse_args(argv)
- try:
- xmlpreprocess(args.xmlfile, args.output,
- variants=args.variants, proxy=args.proxy, gzip=args.gzip,
- sshport=args.sshport, soapport=args.soapport)
- except XMLPreprocessError as e:
- print(e, file=sys.stderr)
- sys.exit(114)
+ xmlpreprocess(args.xmlfile, args.output,
+ variants=args.variants, proxy=args.proxy, gzip=args.gzip,
+ sshport=args.sshport, soapport=args.soapport)
--
2.48.1
More information about the elbe-devel
mailing list