summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/management/commands/noargs_command.py
blob: 65ee370ab7fbc085c21f711278828a737b628e74 (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 = []

    def handle(self, **options):
        print('EXECUTE: noargs_command options=%s' % sorted(options.items()))