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)