Skip to content

Commit

Permalink
wrong force=option.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumit Chachra committed Feb 25, 2013
1 parent 75b8844 commit fa8836d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----

Expand Down
3 changes: 2 additions & 1 deletion django_cron/management/commands/runcrons.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name='django-cron',
version='0.2.6',
version='0.2.7',
author='Sumit Chachra',
author_email='[email protected]',
url='http://github.com/tivix/django-cron',
Expand Down

0 comments on commit fa8836d

Please sign in to comment.