aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-22 10:11:27 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-22 10:11:27 -0500
commitf1903e96777ac8722357a45dbc5da3276c9f8e06 (patch)
tree7f861e771faf4b4f2e02246b9543f26e09cb6c5a
parent2f63b77ce840f5dc0239e72c8581ab76dbc9881f (diff)
downloadcryptography-f1903e96777ac8722357a45dbc5da3276c9f8e06.tar.gz
cryptography-f1903e96777ac8722357a45dbc5da3276c9f8e06.tar.bz2
cryptography-f1903e96777ac8722357a45dbc5da3276c9f8e06.zip
fix doc test failure
-rw-r--r--docs/primitives/symmetric-encryption.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst
index 544c7163..72bf9711 100644
--- a/docs/primitives/symmetric-encryption.rst
+++ b/docs/primitives/symmetric-encryption.rst
@@ -26,7 +26,7 @@ where the encrypter and decrypter both use the same key.
>>> ct = encryptor.update(b"a secret message") + encryptor.finalize()
>>> decryptor = cipher.decryptor()
>>> decryptor.update(ct) + decryptor.finalize()
- b"a secret message"
+ "a secret message"
:param cipher: One of the ciphers described below.
:param mode: One of the modes described below.