Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'certbot/main.py')
-rw-r--r--certbot/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/certbot/main.py b/certbot/main.py
index 6cd2bbfac..5d5251dd2 100644
--- a/certbot/main.py
+++ b/certbot/main.py
@@ -1135,7 +1135,8 @@ def _csr_get_and_save_cert(config, le_client):
"Dry run: skipping saving certificate to %s", config.cert_path)
return None, None
cert_path, _, fullchain_path = le_client.save_certificate(
- cert, chain, config.cert_path, config.chain_path, config.fullchain_path)
+ cert, chain, os.path.normpath(config.cert_path),
+ os.path.normpath(config.chain_path), os.path.normpath(config.fullchain_path))
return cert_path, fullchain_path
def renew_cert(config, plugins, lineage):