Remove quotes from configuration if present
This commit is contained in:
parent
e7c5617f81
commit
5f060f9ac0
1 changed files with 1 additions and 0 deletions
|
@ -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.")
|
||||
|
|
Loading…
Add table
Reference in a new issue