瀏覽代碼

list, not tuple

tags/v0.1^2
Ben Kurtovic 13 年之前
父節點
當前提交
50f1f38fe3
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      wiki/task_manager.py

+ 1
- 1
wiki/task_manager.py 查看文件

@@ -57,7 +57,7 @@ def start_tasks(now=time.gmtime()):
now.tm_wday) # get list of tasks to run this turn

for task in tasks:
if isinstance(task, tuple): # they've specified kwargs
if isinstance(task, list): # they've specified kwargs
start_task(task[0], **task[1]) # so pass those to start_task
else: # otherwise, just pass task_name
start_task(task)


Loading…
取消
儲存