1
0
Fork 0

Remove quotes from configuration if present

This commit is contained in:
Luca Beltrame 2015-12-02 08:15:47 +01:00
parent e7c5617f81
commit 5f060f9ac0

View file

@ -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.")