From 1d0f25df4b21971cdb2c63cbdc8c081c59debd98 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 26 May 2020 16:43:30 -0700 Subject: [PATCH] add unrecognized --- certbot/certbot/interfaces.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/certbot/certbot/interfaces.py b/certbot/certbot/interfaces.py index 729c38806..a88eaeb98 100644 --- a/certbot/certbot/interfaces.py +++ b/certbot/certbot/interfaces.py @@ -623,6 +623,8 @@ class OCSPResponse(object): class OCSPCertStatus(enum): GOOD = 1 REVOKED = 2 + UNRECOGNIZED = 3 + """There are other OCSP statuses, but we may not have code to recognize them yet.""" # Updater interfaces