From 0e9346dc282d39c45379c8d64321fafddcafcb2e Mon Sep 17 00:00:00 2001 From: elijahcroft Date: Mon, 24 Aug 2026 12:29:56 -0700 Subject: [PATCH] Fix formatting in ABSFatalError --- engine/core/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/core/errors.py b/engine/core/errors.py index 79229b6..cfabf8b 100644 --- a/engine/core/errors.py +++ b/engine/core/errors.py @@ -31,7 +31,7 @@ def __init__(self, message: str) -> Never: if isatty: print(Fore.RED + Style.BRIGHT, end="", file=sys.stderr) - print(f"ABS Engine hit a fatal exception: {message}\n", file=sys.stderr) + print(f"ABS Engine hit a fatal exception: \n\n{message}\nAborting.\n", file=sys.stderr) if isatty: print(Style.RESET_ALL, end="", file=sys.stderr)