mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
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:
parent
20b598bf3e
commit
8da2322cad
3 changed files with 24 additions and 5 deletions
|
@ -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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue