Skip to content

Commit 8867724

Browse files
authored
fix README for python3 (#7947)
lol
1 parent 4de6304 commit 8867724

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ key derivation functions. For example, to encrypt something with
3030
>>> f = Fernet(key)
3131
>>> token = f.encrypt(b"A really secret message. Not for prying eyes.")
3232
>>> token
33-
'...'
33+
b'...'
3434
>>> f.decrypt(token)
35-
'A really secret message. Not for prying eyes.'
35+
b'A really secret message. Not for prying eyes.'
3636
3737
You can find more information in the `documentation`_.
3838

0 commit comments

Comments
 (0)