summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Kaseorg <andersk@mit.edu>2022-05-11 13:52:04 -0700
committerAnders Kaseorg <andersk@mit.edu>2022-05-11 13:52:04 -0700
commitdf53317b2aa555014f67506ef5381a088f3fec7a (patch)
treec23f06dc9895c23e641dac7786facb242028f9db
parent485f8adcddc174117925b59bf9d913fd33d37984 (diff)
downloadisort-df53317b2aa555014f67506ef5381a088f3fec7a.tar.gz
Add missing space in unrecoverable exception message
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
-rw-r--r--isort/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isort/main.py b/isort/main.py
index 40725a6a..7e962de8 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"
)