From a7c3c0b90c6bb14b3bcff50790034419891d20f9 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 22 Dec 2020 10:29:00 +1100 Subject: [PATCH] docs: fix simple typo, serveral -> several (#8558) There is a small typo in certbot/certbot/ocsp.py. Should read `several` rather than `serveral`. --- certbot/certbot/ocsp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/certbot/ocsp.py b/certbot/certbot/ocsp.py index 75ce9e2ff..1adce1821 100644 --- a/certbot/certbot/ocsp.py +++ b/certbot/certbot/ocsp.py @@ -222,7 +222,7 @@ def _check_ocsp_cryptography(cert_path, chain_path, url, timeout): def _check_ocsp_response(response_ocsp, request_ocsp, issuer_cert, cert_path): - """Verify that the OCSP is valid for serveral criteria""" + """Verify that the OCSP is valid for several criteria""" # Assert OCSP response corresponds to the certificate we are talking about if response_ocsp.serial_number != request_ocsp.serial_number: raise AssertionError('the certificate in response does not correspond '