Fixed not passing a string as the private key to deploy_certificate when using an Installer plugin.

This commit is contained in:
e00E
2015-06-02 18:17:18 +02:00
parent 34ed54079d
commit 73e9956a48
+1 -1
View File
@@ -147,7 +147,7 @@ def install(args, config, plugins):
acme, doms = _common_run(
args, config, acc, authenticator=None, installer=installer)
assert args.cert_path is not None
acme.deploy_certificate(doms, acc.key, args.cert_path, args.chain_path)
acme.deploy_certificate(doms, acc.key.file, args.cert_path, args.chain_path)
acme.enhance_config(doms, args.redirect)