From 17ef874c04be603bbf3db88bf90d8e4ad0929db1 Mon Sep 17 00:00:00 2001 From: sagi Date: Thu, 12 Nov 2015 02:15:42 +0000 Subject: [PATCH] change args to config in enhance_config --- letsencrypt/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index e33c0770e..36780d2bb 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -453,7 +453,7 @@ def run(args, config, plugins): # pylint: disable=too-many-branches,too-many-lo domains, lineage.privkey, lineage.cert, lineage.chain, lineage.fullchain) - le_client.enhance_config(domains, args) + le_client.enhance_config(domains, config) if len(lineage.available_versions("cert")) == 1: display_ops.success_installation(domains) @@ -507,7 +507,7 @@ def install(args, config, plugins): le_client.deploy_certificate( domains, args.key_path, args.cert_path, args.chain_path, args.fullchain_path) - le_client.enhance_config(domains, args) + le_client.enhance_config(domains, config) def revoke(args, config, unused_plugins): # TODO: coop with renewal config