From a5d739f8ffc3cfd696f25cf7b3c1aba54d2d0633 Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Tue, 4 Feb 2020 10:44:59 +0200 Subject: [PATCH] Update certbot/certbot/_internal/ocsp.py Co-Authored-By: Brad Warren --- certbot/certbot/_internal/ocsp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/certbot/_internal/ocsp.py b/certbot/certbot/_internal/ocsp.py index 5bbff4490..4956a84be 100644 --- a/certbot/certbot/_internal/ocsp.py +++ b/certbot/certbot/_internal/ocsp.py @@ -184,7 +184,7 @@ def _ocsp_times_openssl_bin(response_file): :rtype: tuple of datetime or None """ cmd = ["openssl", "ocsp", "-resp_text", "-noverify", "-respin", response_file] - logger.debug("Reading OCSP response from temp file: %s", response_file) + logger.debug("Reading OCSP response from file: %s", response_file) logger.debug(" ".join(cmd)) try: output, _ = util.run_script(cmd, log=logger.debug)