Skip to content

Commit

Permalink
Removed the skip_cron option from args.
Browse files Browse the repository at this point in the history
  • Loading branch information
davbo committed Mar 26, 2012
1 parent 1f9cb76 commit 75b497e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions molly/utils/management/commands/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Command(NoArgsCommand):
help='Create symlinks, rather than copy, existing media, then start the dev server'),
)

def handle_noargs(self, skip_cron, develop, **options):
def handle_noargs(self, develop, **options):
call_command('sync_and_migrate')
try:
from molly.wurfl import wurfl_data
Expand All @@ -32,4 +32,3 @@ def handle_noargs(self, skip_cron, develop, **options):
call_command('synccompress', force=True)
if develop:
call_command('runserver')

0 comments on commit 75b497e

Please sign in to comment.