aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2022-12-29 19:02:08 -0500
committerGitHub <noreply@github.com>2022-12-30 07:02:08 +0700
commit8867724b2b6db528d2900414ef86c122a1f5602a (patch)
tree2110481c7ce315b5a28466f479a04fef91432c99
parent4de6304884a752014cb9ad0f67453a5292dfa468 (diff)
downloadpyca-cryptography-8867724b2b6db528d2900414ef86c122a1f5602a.zip
pyca-cryptography-8867724b2b6db528d2900414ef86c122a1f5602a.tar.gz
pyca-cryptography-8867724b2b6db528d2900414ef86c122a1f5602a.tar.bz2
fix README for python3 (#7947)
lol
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 19f1678..1c0e57c 100644
--- a/README.rst
+++ b/README.rst
@@ -30,9 +30,9 @@ key derivation functions. For example, to encrypt something with
>>> f = Fernet(key)
>>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
>>> token
- '...'
+ b'...'
>>> f.decrypt(token)
- 'A really secret message. Not for prying eyes.'
+ b'A really secret message. Not for prying eyes.'
You can find more information in the `documentation`_.