From 056ac64fe294fb284ec5b920ec1a9425dd254e92 Mon Sep 17 00:00:00 2001 From: Hunter Fernandes Date: Mon, 8 Feb 2021 12:22:15 -0800 Subject: [PATCH] Fix errant quote in examples causing highlighting failure (#220) --- docs/sewer-as-a-library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sewer-as-a-library.md b/docs/sewer-as-a-library.md index 6309bc13..6209e9ce 100644 --- a/docs/sewer-as-a-library.md +++ b/docs/sewer-as-a-library.md @@ -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())