aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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`_.