aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/__init__.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-09-30 21:22:07 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-10-01 09:22:07 +0800
commitdd567cbf732d310e8a79aa05d7001c8639e9e6f3 (patch)
tree65ea6cc049e294a2e0740c024b9a3a5df44d0000 /src/cryptography/__init__.py
parent62ebb429fe94693e5b94480025f3f3e0556b83b1 (diff)
downloadcryptography-dd567cbf732d310e8a79aa05d7001c8639e9e6f3.tar.gz
cryptography-dd567cbf732d310e8a79aa05d7001c8639e9e6f3.tar.bz2
cryptography-dd567cbf732d310e8a79aa05d7001c8639e9e6f3.zip
Declare that 2.1 is the last version to support Python 2.6 (#3944)
* Declare that 2.1 is the last version to support Python 2.6 * It's the Final Countdown!
Diffstat (limited to 'src/cryptography/__init__.py')
-rw-r--r--src/cryptography/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/__init__.py b/src/cryptography/__init__.py
index 940c66bc..e5c34a27 100644
--- a/src/cryptography/__init__.py
+++ b/src/cryptography/__init__.py
@@ -21,7 +21,7 @@ __all__ = [
if sys.version_info[:2] == (2, 6):
warnings.warn(
"Python 2.6 is no longer supported by the Python core team, please "
- "upgrade your Python. A future version of cryptography will drop "
+ "upgrade your Python. The next version of cryptography will drop "
"support for Python 2.6",
DeprecationWarning
)