summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Billig <gleb.billig@gmail.com>2023-03-15 00:53:43 +0100
committerGitHub <noreply@github.com>2023-03-14 19:53:43 -0400
commit216cb51e80d36669e235f5fceb5a0fe84e35279c (patch)
tree57ae219705ee09063d283d70e43458183f52b1d0
parent777efa2f51249f63b0f95804230117723eca5d09 (diff)
downloadpyjwt-216cb51e80d36669e235f5fceb5a0fe84e35279c.tar.gz
docs: correct mistake in the changelog about verify param (#866)
-rw-r--r--CHANGELOG.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 12117ec..25bd427 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -261,7 +261,7 @@ use
And the old v1.x syntax
``jwt.decode(token, verify=False)``
is now:
-``jwt.decode(jwt=token, key='secret', algorithms=['HS256'], options={"verify_signature": False, "verify_exp": True})``
+``jwt.decode(jwt=token, key='secret', algorithms=['HS256'], options={"verify_signature": False})``
Added
~~~~~