From d74f7c1594c1e746fd4fb79a49c3874ae9c25444 Mon Sep 17 00:00:00 2001 From: hb0nd Date: Sun, 22 Jun 2025 13:35:00 +0200 Subject: [PATCH] [generator] Fix error message Signed-off-by: Harry Bond --- tools/python/maps_generator/generator/osmtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/maps_generator/generator/osmtools.py b/tools/python/maps_generator/generator/osmtools.py index 0132077fc..bf978c178 100644 --- a/tools/python/maps_generator/generator/osmtools.py +++ b/tools/python/maps_generator/generator/osmtools.py @@ -34,7 +34,7 @@ def build_osmtools(path, output=subprocess.DEVNULL, error=subprocess.DEVNULL): if c.wait() != os.EX_OK: messages.append(f"The launch of {' '.join(c.args)} failed.") if messages: - raise BadExitStatusError("\n".split(messages)) + raise BadExitStatusError("\n".join(messages)) return result