Skip to content

Commit

Permalink
don't ignore tz
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Jun 27, 2024
1 parent 33c0a7c commit d3dd338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authsign/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def parse_date(datestr):
if isinstance(datestr, datetime.datetime):
return datestr

return dateutil.parser.parse(datestr, ignoretz=True)
return dateutil.parser.parse(datestr)


def format_date(date):
Expand Down

0 comments on commit d3dd338

Please sign in to comment.