Skip to content

Commit d9f182d

Browse files
authored
Add a missing space to py35 deprecation warning (#5448)
This fixes a typo that's been introduced in #5387.
1 parent 63dfc57 commit d9f182d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cryptography/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
)
4242
if sys.version_info[:2] == (3, 5):
4343
warnings.warn(
44-
"Python 3.5 support will be dropped in the next release of"
44+
"Python 3.5 support will be dropped in the next release of "
4545
"cryptography. Please upgrade your Python.",
4646
CryptographyDeprecationWarning,
4747
stacklevel=2,

0 commit comments

Comments
 (0)