Skip to content

Commit

Permalink
Add a missing space in Python 2 deprecation (GH-2590)
Browse files Browse the repository at this point in the history
`DEPRECATION: Python 2 support will be removed in the first stable releaseexpected in January 2022` - > `DEPRECATION: Python 2 support will be removed in the first stable release expected in January 2022`
  • Loading branch information
LordOfPolls committed Nov 6, 2021
1 parent 64c8be0 commit f80f497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/black/__init__.py
Expand Up @@ -1065,7 +1065,7 @@ def f(
# TODO: fully drop support and this code hopefully in January 2022 :D
if TargetVersion.PY27 in mode.target_versions or versions == {TargetVersion.PY27}:
msg = (
"DEPRECATION: Python 2 support will be removed in the first stable release"
"DEPRECATION: Python 2 support will be removed in the first stable release "
"expected in January 2022."
)
err(msg, fg="yellow", bold=True)
Expand Down

0 comments on commit f80f497

Please sign in to comment.