rename var

This commit is contained in:
Cyberes 2024-03-04 10:04:38 -07:00
parent a9c52394e7
commit d32092c62f
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ def check_timer(timer_name):
local_timezone_offset = timedelta(seconds=local_timezone_offset_seconds)
local_datetime = datetime.utcfromtimestamp(int(next_elapse) / 1e6) + local_timezone_offset
next_elapse_str = local_datetime.strftime("%m-%d-%Y %H:%M")
except ValueError as e:
if 'is out of range' in repr(e):
except ValueError as v_err:
if 'is out of range' in repr(v_err):
# This occurs whenever the timer resets.
# "year 586524 is out of range"
print(f'OK - {timer_name} has triggered.')