aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/fernet.rst1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/fernet.rst b/docs/fernet.rst
index 33488891..02b99705 100644
--- a/docs/fernet.rst
+++ b/docs/fernet.rst
@@ -22,7 +22,6 @@ using it cannot be manipulated or read without the key.
>>> from cryptography.fernet import Fernet
>>> f = Fernet(key)
>>> ciphertext = f.encrypt(b"my deep dark secret")
- # Secret bytes.
>>> ciphertext
'...'
>>> f.decrypt(ciphertext)