diff options
author | Alex Grönholm <alex.gronholm@nextday.fi> | 2014-05-30 04:38:09 +0300 |
---|---|---|
committer | Alex Grönholm <alex.gronholm@nextday.fi> | 2014-05-30 10:34:51 +0300 |
commit | 223672e2e80029cf6aa14b7cfb2f0d500464dfdf (patch) | |
tree | b98280a4842c4527219524cb99a446d9c4dbf5b2 /docs/modules | |
parent | 4ba9ab3ad2ecdfb576c7b9f076b4a93a6cac263d (diff) | |
download | apscheduler-223672e2e80029cf6aa14b7cfb2f0d500464dfdf.tar.gz |
Tweaked the scheduler and job stores API and added the reschedule_job() method
Diffstat (limited to 'docs/modules')
-rw-r--r-- | docs/modules/triggers/date.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/modules/triggers/date.rst b/docs/modules/triggers/date.rst index f784e38..f81fbf4 100644 --- a/docs/modules/triggers/date.rst +++ b/docs/modules/triggers/date.rst @@ -55,8 +55,5 @@ The run date can be given as text too:: To add a job to be run immediately:: - # The 'date' trigger is implicit + # The 'date' trigger and datetime.now() as run_date are implicit sched.add_job(my_job, args=['text']) - -.. note:: Jobs added this way (no trigger specified) never time out (i.e. ``misfire grace period`` is set to - ``None`` by default. |