Fix parsing of 2-character timestamps

Fix parsing of 2-character timestamps to be minute timestamps at
midnight GMT
This commit is contained in:
XANTRONIX Industrial 2025-02-15 11:19:42 -05:00
parent 37eb4fc2be
commit 912c8d14a8

View file

@ -12,8 +12,8 @@ def time_from_str(time: str):
if size <= 2: if size <= 2:
return ( return (
int(time) % 24, 0,
0 int(time) % 60,
) )
return ( return (