Fixed #10080: call_command now takes option defaults into account, sparing individual commands from any difference between call_command and being run from the shell. Thanks, Alex Koshelev.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2009-04-05 17:27:26 +00:00
parent 20b598bf3e
commit 8da2322cad
3 changed files with 24 additions and 5 deletions

View file

@ -1,3 +1,4 @@
from optparse import make_option
from django.core.management.base import BaseCommand
class Command(BaseCommand):
@ -5,5 +6,9 @@ class Command(BaseCommand):
args = ''
requires_model_validation = True
option_list =[
make_option("-s", "--style", default="Rock'n'Roll")
]
def handle(self, *args, **options):
print "I don't feel like dancing."
print "I don't feel like dancing %s." % options["style"]