Skip to content

Commit 587e98f

Browse files
committed
fix
1 parent 7a28d1b commit 587e98f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scheduler/templatetags/scheduler_tags.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def show_func_name(rq_job: JobExecution) -> str:
1414
try:
1515
res = rq_job.func_name
16-
if res == 'scheduler.tools.run_job':
16+
if res == 'scheduler.tools.run_task':
1717
task = get_scheduled_task(*rq_job.args)
1818
res = task.function_string()
1919
return mark_safe(res)

0 commit comments

Comments
 (0)