Update certbot/certbot/_internal/ocsp.py

Co-Authored-By: Brad Warren <bmw@users.noreply.github.com>
This commit is contained in:
Joona Hoikkala 2020-02-04 10:44:59 +02:00 committed by GitHub
parent d785f8c534
commit a5d739f8ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)