We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd9c177 commit 554c2e6Copy full SHA for 554c2e6
xolphin/certificate_requests/create_certificate_request.py
@@ -29,7 +29,7 @@ def toDict(self):
29
'years': self.years,
30
'csr': self.csr,
31
'dcvType': self.dcv_type,
32
- 'disableFreeSan': int(self.disable_free_san), # int case is a workaround, booleans don't work here.
+ 'disableFreeSan': int(self.disable_free_san), # int cast is a workaround, booleans don't work here.
33
}
34
35
if len(self.subject_alternative_names) > 0: result['subjectAlternativeNames'] = ','.join(self.subject_alternative_names)
0 commit comments