From 623fd9f41716ec0c7439c8f6d89a7df560ae582e Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Tue, 2 Feb 2016 10:59:01 -0800 Subject: [PATCH] fix editing error --- letsencrypt/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 0dfed928d..d17a24bdc 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -664,7 +664,7 @@ def obtain_cert(config, plugins): "Dry run: skipping saving certificate to %s", config.cert_path) else: cert_path, _, cert_fullchain = le_client.save_certificate( - , chain, config.cert_path, config.chain_path, args.fullchain_path) + certr, chain, config.cert_path, config.chain_path, args.fullchain_path) _report_new_cert(cert_path, cert_fullchain) else: domains = _find_domains(config, installer)