aboutsummaryrefslogtreecommitdiffstats
path: root/docs/fernet.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-31 11:28:13 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-31 11:28:13 -0700
commit5ac6524f790713090754572fb775405f64a87df2 (patch)
tree30b125bbab31b4ab7f6370d7660ec32a2ffd741f /docs/fernet.rst
parent5c5342ec17aba6f6f10ab2136192be97180e2225 (diff)
downloadcryptography-5ac6524f790713090754572fb775405f64a87df2.tar.gz
cryptography-5ac6524f790713090754572fb775405f64a87df2.tar.bz2
cryptography-5ac6524f790713090754572fb775405f64a87df2.zip
fix
Diffstat (limited to 'docs/fernet.rst')
-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)