summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2018-08-07 14:28:19 +0200
committerIlya Etingof <etingof@gmail.com>2018-08-07 14:28:19 +0200
commit70d435a06ebbf6d0560bb68501d59c5e25d04a8c (patch)
treee48a293200187354ab67231d1093cd5c318135b3 /docs
parent58c59a281b72180a3fbb37a379c1832c032467e7 (diff)
downloadpyasn1-git-70d435a06ebbf6d0560bb68501d59c5e25d04a8c.tar.gz
Fix typo in example-use-case.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/source/example-use-case.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/example-use-case.rst b/docs/source/example-use-case.rst
index 4efdc81..cd39c47 100644
--- a/docs/source/example-use-case.rst
+++ b/docs/source/example-use-case.rst
@@ -97,7 +97,7 @@ set on the key file):
from rsakey import RSAPrivateKey
# Read SSH key from file (assuming no passphrase)
- with open open('.ssh/id_rsa') as key_file:
+ with open('.ssh/id_rsa') as key_file:
b64_serialisation = ''.join(key_file.readlines()[1:-1])
# Undo BASE64 serialisation