mirror of
https://github.com/django/django.git
synced 2025-10-22 21:29:11 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7881 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
315 B
Python
10 lines
315 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Test basic commands'
|
|
requires_model_validation = False
|
|
args = '[labels ...]'
|
|
|
|
def handle(self, *labels, **options):
|
|
print 'EXECUTE:BaseCommand labels=%s, options=%s' % (labels, sorted(options.items()))
|