diff --git a/README.md b/README.md index c4285f92..0f72d4b4 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Scheduling jobs are also similarly easy: ```python # Schedule job to run at 9:15, October 10th -job = queue.enqueue_at(datetime(2019, 10, 8, 9, 15), say_hello) +job = queue.enqueue_at(datetime(2019, 10, 10, 9, 15), say_hello) # Schedule job to run in 10 seconds job = queue.enqueue_in(timedelta(seconds=10), say_hello)