summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYong-Lee <l772883420@gmail.com>2017-05-17 14:56:32 +0800
committerAlex Grönholm <alex.gronholm@nextday.fi>2017-05-17 09:56:32 +0300
commit2266ffa1d6453cd1cdb909005cd1bb2df16ab61a (patch)
treeef5268803d9c65d5a41520ed6e738167962c4aaf
parent1be5571d3ba40d12d4d84fb4fe4e4ce30f546cf5 (diff)
downloadapscheduler-2266ffa1d6453cd1cdb909005cd1bb2df16ab61a.tar.gz
Added missing single quote in documentation
-rw-r--r--docs/modules/triggers/interval.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modules/triggers/interval.rst b/docs/modules/triggers/interval.rst
index 1f74c3a..5fec5b0 100644
--- a/docs/modules/triggers/interval.rst
+++ b/docs/modules/triggers/interval.rst
@@ -49,7 +49,7 @@ Examples
You can use ``start_date`` and ``end_date`` to limit the total time in which the schedule runs::
# The same as before, but starts on 2010-10-10 at 9:30 and stops on 2014-06-15 at 11:00
- sched.add_job(job_function, 'interval', hours=2, start_date='2010-10-10 09:30:00', end_date='2014-06-15 11:00:00)
+   sched.add_job(job_function, 'interval', hours=2, start_date='2010-10-10 09:30:00', end_date='2014-06-15 11:00:00')
The :meth:`~apscheduler.schedulers.base.BaseScheduler.scheduled_job` decorator works nicely too::