From 73e9956a481cf6504439ce437db1de978c00b046 Mon Sep 17 00:00:00 2001 From: e00E Date: Tue, 2 Jun 2015 18:17:18 +0200 Subject: [PATCH] Fixed not passing a string as the private key to deploy_certificate when using an Installer plugin. --- letsencrypt/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 169b55aff..fe3be19bc 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -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)