1
0
mirror of https://github.com/django/django.git synced 2025-02-21 14:54:35 +00:00

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()))