mirror of https://github.com/django/django.git
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()))
|