Skip to content

Commit

Permalink
Merge pull request #1933 from andersk/unrecoverable
Browse files Browse the repository at this point in the history
Add missing space in unrecoverable exception message
  • Loading branch information
timothycrosley committed May 11, 2022
2 parents 485f8ad + df53317 commit cf6496d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isort/main.py
Expand Up @@ -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"
)
Expand Down

0 comments on commit cf6496d

Please sign in to comment.