From 919cc8da53e1ab8ba083436311201f351b63b7ab Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Tue, 24 Aug 2021 13:02:31 +0200 Subject: [PATCH] Fixed the report of stored certificates (.pem files). Signed-off-by: Pol Henarejos --- certbot_castle/_version.py | 2 +- cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot_castle/_version.py b/certbot_castle/_version.py index 6c49566..30df405 100755 --- a/certbot_castle/_version.py +++ b/certbot_castle/_version.py @@ -1 +1 @@ -__version__ = "0.9.1.dev" +__version__ = "0.9.2.dev" diff --git a/cli.py b/cli.py index 7fcedd8..7cb16e5 100644 --- a/cli.py +++ b/cli.py @@ -92,7 +92,7 @@ def request_cert(args, config): config.cert_path = cert_path config.fullchain_path = fullchain_path config.chain_path = chain_path - certbot_main._report_new_cert(config, cert_path, chain_path, fullchain_path) + certbot_main._report_new_cert(config, cert_path, fullchain_path, key.file) if (not config.dry_run): certbot_main._install_cert(config, le_client, args.email) else: