blob: acefe092715899ec84f8db2a0aee6682cdd2fd91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from optparse import make_option
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = "Dance around like a madman."
args = ''
requires_model_validation = True
option_list =[
make_option("-s", "--style", default="Rock'n'Roll")
]
def handle(self, *args, **options):
self.stdout.write("I don't feel like dancing %s." % options["style"])
|