ソースを参照

make task sleep for a bit so I can catch it when active

tags/v0.1
Ben Kurtovic 13年前
コミット
7caa07b4d8
1個のファイルの変更4行の追加1行の削除
  1. +4
    -1
      wiki/tasks/afc_statistics.py

+ 4
- 1
wiki/tasks/afc_statistics.py ファイルの表示

@@ -2,6 +2,8 @@

# A task to generate statistics for [[WP:AFC]] and save them to [[Template:AFC_statistics]].

import time

from wiki.base_task import BaseTask

class Task(BaseTask):
@@ -9,4 +11,5 @@ class Task(BaseTask):
self.task_name = "afc_statistics"
def run(self, **kwargs):
pass
time.sleep(10)
print "kwargs: {}".format(kwargs)

読み込み中…
キャンセル
保存