From 975025207f38fc7ad6cce473d0ed92f37014bbb9 Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Tue, 4 Feb 2020 10:43:53 +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 30c682b3e..c13ff9700 100644 --- a/certbot/certbot/_internal/ocsp.py +++ b/certbot/certbot/_internal/ocsp.py @@ -181,7 +181,7 @@ def _ocsp_times_openssl_bin(response_file): :param str response_file: File path to OCSP response :returns: tuple of producedAt, thisUpdate and nextUpdate values - :rtype: tuple of datetime + :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)