2014-06-18 07:07:54 +08:00
|
|
|
from django.core.management.base import BaseCommand
|
2008-07-10 20:12:41 +08:00
|
|
|
|
2011-10-14 02:51:33 +08:00
|
|
|
|
2014-06-18 07:07:54 +08:00
|
|
|
class Command(BaseCommand):
|
2008-07-10 20:12:41 +08:00
|
|
|
help = "Test No-args commands"
|
2020-05-14 06:00:41 +08:00
|
|
|
requires_system_checks = []
|
2008-07-10 20:12:41 +08:00
|
|
|
|
2014-06-18 07:07:54 +08:00
|
|
|
def handle(self, **options):
|
|
|
|
print('EXECUTE: noargs_command options=%s' % sorted(options.items()))
|