mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
change args to config in enhance_config
This commit is contained in:
parent
9ad38e9b37
commit
17ef874c04
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue