blob: c95f7c18447e645dfdef2091ff512a808ae67610 (
plain)
1
2
3
4
5
6
7
8
9
|
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = "Test No-args commands"
requires_system_checks = False
def handle(self, **options):
print('EXECUTE: noargs_command options=%s' % sorted(options.items()))
|