You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have one issue at line 47 in cron.py return next_datetime values without timezone information.
I think it will be happen when your frequency_time greater than now and next_cron will move to next year.
You can try with current time and next_cron is any day of next year.
You can use this code to replace while loop at line 43
while True:
next_dt = _get_next_dt(dt, options)
if next_dt is None:
return dt.replace(tzinfo=datetime.now().astimezone().tzinfo)
dt = next_dt
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
I have one issue at line 47 in
cron.py
return next_datetime values without timezone information.I think it will be happen when your frequency_time greater than now and next_cron will move to next year.
You can try with current time and next_cron is any day of next year.
You can use this code to replace while loop at line 43
The text was updated successfully, but these errors were encountered: