Skip to content

Commit

Permalink
fix README for python3 (#7947)
Browse files Browse the repository at this point in the history
lol
Rate limit · GitHub

Whoa there!

You have triggered an abuse detection mechanism.

Please wait a few minutes before you try again;
in some cases this may take up to an hour.

alex authored Dec 30, 2022
1 parent 4de6304 commit 8867724
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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`_.

0 comments on commit 8867724

Please sign in to comment.