1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-01-31 03:12:12 +00:00
This commit is contained in:
Louis Vézina 2017-11-14 13:37:54 -05:00
parent b88fba51ff
commit 175095a45b

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)])
return template('system', tasks=tasks, logs=logs, base_url=base_url, task_list=task_list)