Skip to content

Commit

Permalink
Fixed cert warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterSG7 authored and tkuester committed Apr 5, 2024
1 parent 65b627b commit 7e5671b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taky/util/anc.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ def add_certificate(self, cert):

self.cert_db_sn[cert.serial_number] = {
"status": "V",
"issued": cert.not_valid_before,
"expires": cert.not_valid_after,
"issued": cert.not_valid_before_utc,
"expires": cert.not_valid_after_utc,
"serial_num": cert.serial_number,
"name": common_name,
}
Expand Down

0 comments on commit 7e5671b

Please sign in to comment.