From 8f09c76084834890a9a8e24bef96165b25374f96 Mon Sep 17 00:00:00 2001 From: Dan Tao Date: Fri, 26 Jun 2015 09:55:24 -0500 Subject: [PATCH] fixed typo in readme (s/proving/providing) --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index bed8d04..4fe9154 100644 --- a/README.rst +++ b/README.rst @@ -13,7 +13,7 @@ django-cron .. image:: https://readthedocs.org/projects/django-cron/badge/?version=latest :target: https://readthedocs.org/projects/django-cron/?badge=latest -Django-cron lets you run Django/Python code on a recurring basis proving basic plumbing to track and execute tasks. The 2 most common ways in which most people go about this is either writing custom python scripts or a management command per cron (leads to too many management commands!). Along with that some mechanism to track success, failure etc. is also usually necesary. +Django-cron lets you run Django/Python code on a recurring basis providing basic plumbing to track and execute tasks. The 2 most common ways in which most people go about this is either writing custom python scripts or a management command per cron (leads to too many management commands!). Along with that some mechanism to track success, failure etc. is also usually necesary. This app solves both issues to a reasonable extent. This is by no means a replacement for queues like Celery ( http://celeryproject.org/ ) etc.