diff --git a/README.rst b/README.rst index 4d9c2e4..46ce4d8 100644 --- a/README.rst +++ b/README.rst @@ -131,6 +131,12 @@ This opensource app is brought to you by Tivix, Inc. ( http://tivix.com/ ) Changelog ========= +0.2.7 +----- + + - Bug fix. + + 0.2.6 ----- diff --git a/django_cron/management/commands/runcrons.py b/django_cron/management/commands/runcrons.py index df9b275..0521519 100644 --- a/django_cron/management/commands/runcrons.py +++ b/django_cron/management/commands/runcrons.py @@ -53,7 +53,8 @@ def handle(self, *args, **options): sys.exit() for cron_class in crons_to_run: - run_cron_with_cache_check(cron_class, force=options, silent=options['silent']) + run_cron_with_cache_check(cron_class, force=options['force'], + silent=options['silent']) def run_cron_with_cache_check(cron_class, force=False, silent=False): diff --git a/setup.py b/setup.py index 49ee839..8b5a20f 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='django-cron', - version='0.2.6', + version='0.2.7', author='Sumit Chachra', author_email='chachra@tivix.com', url='http://github.com/tivix/django-cron',