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"
|
2014-01-20 10:45:21 +08:00
|
|
|
requires_system_checks = False
|
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()))
|