Merge branch 'master' into dependabot/pip/bleach-3.1.2

This commit is contained in:
Hossein Shafagh 2020-03-27 10:44:54 -07:00 committed by GitHub
commit 88b14d6ad6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -321,7 +321,8 @@ class Certificate(db.Model):
@hybrid_property
def expired(self):
if self.not_after <= arrow.utcnow():
# can't compare offset-naive and offset-aware datetimes
if arrow.Arrow.fromdatetime(self.not_after) <= arrow.utcnow():
return True
@expired.expression