From df53317b2aa555014f67506ef5381a088f3fec7a Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 11 May 2022 13:52:04 -0700 Subject: [PATCH] Add missing space in unrecoverable exception message Signed-off-by: Anders Kaseorg --- isort/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isort/main.py b/isort/main.py index 40725a6a6..7e962de89 100644 --- a/isort/main.py +++ b/isort/main.py @@ -120,7 +120,7 @@ def _print_hard_fail( ) -> None: """Fail on unrecoverable exception with custom message.""" message = message or ( - f"Unrecoverable exception thrown when parsing {offending_file or ''}!" + f"Unrecoverable exception thrown when parsing {offending_file or ''}! " "This should NEVER happen.\n" "If encountered, please open an issue: https://github.com/PyCQA/isort/issues/new" )