1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-03-03 10:06:24 +00:00
This commit is contained in:
Louis Vézina 2017-11-14 14:58:27 -05:00
parent 1d19db607d
commit d97f6d3931

View file

@ -320,7 +320,7 @@ def system():
task_list = []
for job in scheduler.get_jobs():
task_list.append([job.name, job.trigger.interval.__str__(), pretty.date(job.next_run_time.replace(tzinfo=None))])
task_list.append([job.name, job.trigger.interval.__str__(), pretty.date(job.next_run_time.replace(tzinfo=tz))])
return template('system', tasks=tasks, logs=logs, base_url=base_url, task_list=task_list)