From 676b8ad8981ba1bf6839207cc054fd69f94644f8 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Sun, 17 Mar 2019 23:09:24 +0100 Subject: [PATCH] fix missing space --- wo/cli/plugins/site_functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wo/cli/plugins/site_functions.py b/wo/cli/plugins/site_functions.py index 166db96..341ab16 100644 --- a/wo/cli/plugins/site_functions.py +++ b/wo/cli/plugins/site_functions.py @@ -1297,7 +1297,7 @@ def setupLetsEncryptSubdomain(self, wo_domain_name): ssl = WOShellExec.cmd_exec(self, "mkdir -p {0}/{1} && " "/etc/letsencrypt/acme.sh " "--config-home " - "'/etc/letsencrypt/config'" + "'/etc/letsencrypt/config' " "--install-cert -d {1} --ecc " "--cert-file {0}/{1}/cert.pem " "--key-file {0}/{1}/key.pem " @@ -1332,7 +1332,7 @@ def setupLetsEncryptSubdomain(self, wo_domain_name): except IOError as e: Log.debug(self, str(e)) Log.debug(self, "Error occured while generating " - "ssl.conf") + "ssl.conf") else: Log.error(self, "Unable to install certificate", False) Log.error(self, "Please make sure that your site is pointed to \n"