From 5f060f9ac048974a5db295a2f39beee2dcf07f8b Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Wed, 2 Dec 2015 08:15:47 +0100 Subject: [PATCH] Remove quotes from configuration if present --- letsencrypt_renew.py | 1 + 1 file changed, 1 insertion(+) diff --git a/letsencrypt_renew.py b/letsencrypt_renew.py index f9fbf55..198237c 100644 --- a/letsencrypt_renew.py +++ b/letsencrypt_renew.py @@ -92,6 +92,7 @@ def get_letsencrypt_path(configfile): break command_path = row.split("=")[1] + command_path = command_path.replace('"', '') if not Path(command_path).exists(): logger.error("No letsencrypt command found.")