Tighten up this warning message (#5560)

This commit is contained in:
Alex Gaynor 2020-11-11 11:57:32 -05:00 committed by GitHub
parent 94f32c14b7
commit d74a477b66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,8 +34,8 @@ __all__ = [
if sys.version_info[0] == 2:
warnings.warn(
"Python 2 is no longer supported by the Python core team. Support for "
"it is now deprecated in cryptography, and will be removed in a "
"future release.",
"it is now deprecated in cryptography, and will be removed in the "
"next release.",
CryptographyDeprecationWarning,
stacklevel=2,
)