Recently, when I use clarify, Python has been spitting out this warning:
UnknownTimezoneWarning: tzname
CDT identified but not understood.
Pass "tzinfos" argument in order to correctly return a timezone-aware datetime.
In a future version, this will raise an exception.
I think it's from this line in clarify:
|
return dateutil.parser.parse(tree.xpath('/ElectionResult/Timestamp')[0].text) |
Anyway, it's not an exception yet, but I wanted to bring that to your attention. I don't know if something like this might be a solution, though obviously that specific answer is overkill.
Recently, when I use
clarify, Python has been spitting out this warning:I think it's from this line in clarify:
clarify/clarify/parser.py
Line 67 in 12b4eb5
Anyway, it's not an exception yet, but I wanted to bring that to your attention. I don't know if something like this might be a solution, though obviously that specific answer is overkill.