我正在尝试在烧瓶中实现cron作业。代码结构就像是 这样:
代码:
@sched.cron_schedule(second='*/30')
def some_decorated_task():
time_now = datetime.datetime.now()
print time_now
print "##########0@@@@@@"
输出:
2015-03-01 23:53:30.001843
##########0@@@@@@
2015-03-01 23:53:30.002615
##########0@@@@@@
为什么要打印两次而不是一次?