aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/exceptions.py
diff options
context:
space:
mode:
authorSteven Buss <steven.buss@gmail.com>2015-04-13 15:38:59 -0400
committerSteven Buss <steven.buss@gmail.com>2015-04-13 18:20:47 -0400
commitb3f45e3b16990a9293f68faecde3da790e4a4216 (patch)
tree0557e19d7bf12c0f4fac5c269311ee28ddd9190e /src/cryptography/exceptions.py
parent9f581536b6d7f11c1139d9aed78bc880636f80d3 (diff)
downloadcryptography-b3f45e3b16990a9293f68faecde3da790e4a4216.tar.gz
cryptography-b3f45e3b16990a9293f68faecde3da790e4a4216.tar.bz2
cryptography-b3f45e3b16990a9293f68faecde3da790e4a4216.zip
InvalidToken is deprecated in 09, not 08
Diffstat (limited to 'src/cryptography/exceptions.py')
-rw-r--r--src/cryptography/exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/exceptions.py b/src/cryptography/exceptions.py
index 1e80e4ac..a4292eb8 100644
--- a/src/cryptography/exceptions.py
+++ b/src/cryptography/exceptions.py
@@ -63,5 +63,5 @@ InvalidToken = utils.deprecated(
"The InvalidToken exception has moved to the "
"cryptography.hazmat.primitives.twofactor module"
),
- utils.DeprecatedIn08
+ utils.DeprecatedIn09
)