You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Linedatetime.strptime(certificate['Expiration'], frm) fails (at least on my account) as certificate['Expiration'] is found to already be a datetime object.
Changing the line to delta = datetime.now(certificate['Expiration'].tzinfo) - certificate['Expiration'] fixes the issue on my side.
The text was updated successfully, but these errors were encountered:
Line
datetime.strptime(certificate['Expiration'], frm)
fails (at least on my account) as certificate['Expiration'] is found to already be a datetime object.Changing the line to
delta = datetime.now(certificate['Expiration'].tzinfo) - certificate['Expiration']
fixes the issue on my side.The text was updated successfully, but these errors were encountered: