From 3acb15e38780200e97c79f0cce8b46109acfd89d Mon Sep 17 00:00:00 2001 From: Massimiliano Adamo <maxadamo@gmail.com> Date: Thu, 10 Sep 2020 18:30:22 +0200 Subject: [PATCH] fix typo --- files/cert2json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/cert2json.py b/files/cert2json.py index b17f656..177210c 100755 --- a/files/cert2json.py +++ b/files/cert2json.py @@ -35,7 +35,7 @@ JSON_FILE = "/etc/acme/{}.json".format(PROVIDER) with open(YAML_FILE, "w") as yaml_out: - yaml_out.write("---\n".format(PROVIDER_STRING)) + yaml_out.write("---\n") for txt_line in DECODED_OUTPUT: if "Certificate Name:" in txt_line: txt_line_out = re.sub('.*Certificate Name: ', ' ', txt_line) + ":" -- GitLab