Replace "Z" in ISO timestamps with "+00:00" for backwards compatibility with older versions of Python

This commit is contained in:
Ian Renton
2026-01-12 19:30:19 +00:00
parent 059d9364eb
commit 897901e105
3 changed files with 3 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ class SOTA(HTTPSpotProvider):
comment=source_spot["comments"],
sig="SOTA",
sig_refs=[SIGRef(id=source_spot["summitCode"], sig="SOTA", name=source_spot["summitName"], activation_score=source_spot["points"])],
time=datetime.fromisoformat(source_spot["timeStamp"]).timestamp())
time=datetime.fromisoformat(source_spot["timeStamp"].replace("Z", "+00:00")).timestamp())
# Add to our list. Don't worry about de-duping, removing old spots etc. at this point; other code will do
# that for us.