mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
302eeaf190
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
256 B
Python
9 lines
256 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
class Command(BaseCommand):
|
|
help = "Dance around like a madman."
|
|
args = ''
|
|
requires_model_validation = True
|
|
|
|
def handle(self, *args, **options):
|
|
print "I don't feel like dancing." |