Skip to content

Commit

Permalink
Fix errant quote in examples causing highlighting failure (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
hfern authored Feb 8, 2021
1 parent 14e8b4b commit 056ac64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/sewer-as-a-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ print("your letsencrypt.org account key is:", acct_key.private_bytes())
# NB: your certificate_key and account_key should be SECRET.
# You can write these out to individual files, eg::

with open("certificate.crt", "wb"') as f:
with open('certificate.crt', 'wb') as f:
f.write(certificate.private_bytes())
with open('certificate.key', 'wb') as f:
f.write(certkey.private_bytes())
Expand Down

0 comments on commit 056ac64

Please sign in to comment.