From 8867724b2b6db528d2900414ef86c122a1f5602a Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 29 Dec 2022 19:02:08 -0500 Subject: [PATCH] fix README for python3 (#7947) lol --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 19f1678b710f..1c0e57cbe5e4 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`_.