/tests/regressiontests/admin_scripts/management/commands/noargs_command.py
Python | 9 lines | 6 code | 3 blank | 0 comment | 0 complexity | 6d8efc3709d0904cbccfbc62191907cc MD5 | raw file
Possible License(s): BSD-3-Clause
- from django.core.management.base import NoArgsCommand
- class Command(NoArgsCommand):
- help = "Test No-args commands"
- requires_model_validation = False
- def handle_noargs(self, **options):
- print 'EXECUTE:NoArgsCommand options=%s' % sorted(options.items())