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

@@ -35,7 +35,7 @@ class ZLOTA(HTTPSpotProvider):
comment=source_spot["comments"],
sig="ZLOTA",
sig_refs=[SIGRef(id=source_spot["reference"], sig="ZLOTA", name=source_spot["name"])],
time=datetime.fromisoformat(source_spot["referenced_time"]).astimezone(pytz.UTC).timestamp())
time=datetime.fromisoformat(source_spot["referenced_time"].replace("Z", "+00:00")).astimezone(pytz.UTC).timestamp())
new_spots.append(spot)
return new_spots