Merge pull request #475 from e00E/master

Fixed not passing a string as the private key to deploy_certificate w…
This commit is contained in:
James Kasten
2015-06-02 14:37:55 -04:00
+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)