From 894e35b4e2a8f310a024bdf7da89009bc47b1f29 Mon Sep 17 00:00:00 2001 From: Hossein Shafagh Date: Wed, 14 Oct 2020 09:48:40 -0700 Subject: [PATCH] Update schemas.py minor language --- lemur/certificates/schemas.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lemur/certificates/schemas.py b/lemur/certificates/schemas.py index 21abd214..cc0a607e 100644 --- a/lemur/certificates/schemas.py +++ b/lemur/certificates/schemas.py @@ -340,8 +340,8 @@ class CertificateOutputSchema(LemurOutputSchema): @post_dump def handle_subject_details(self, data): - # Remove subject details if authority is CAB compliant. The code will use default set of values in that case. - # If CAB compliance of an authority is unknown (None), it is safe to fallback to default values. Thus below + # Remove subject details if authority is CA/Browser Forum compliant. The code will use default set of values in that case. + # If CA/Browser Forum compliance of an authority is unknown (None), it is safe to fallback to default values. Thus below # condition checks for 'not False' ==> 'True or None' if data.get("authority"): is_cab_compliant = data.get("authority").get("isCabCompliant")