Fix typo in cryptography backend. (#54634)

pull/4420/head
Felix Fontein 2019-03-30 16:16:28 +01:00 committed by ansibot
parent 188903448a
commit 51f41a2298
1 changed files with 1 additions and 1 deletions

View File

@ -1278,7 +1278,7 @@ class AssertOnlyCertificateCryptography(Certificate):
def _validate_invalid_at():
if self.invalid_at[0]:
if (self.get_relative_time_option(self.invalid_at[0], 'invalid_at') > self.cert.not_valid_before) \
if (self.get_relative_time_option(self.invalid_at[0], 'invalid_at') <= self.cert.not_valid_before) \
or (self.get_relative_time_option(self.invalid_at, 'invalid_at') >= self.cert.not_valid_after):
self.message.append(
'Certificate is not invalid for the specified date (%s) - notBefore: %s - notAfter: %s' % (self.invalid_at,