summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/management/commands/noargs_command.py
blob: 1a16dd8086c5d07fb2c16b18583f2d03969e9c01 (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()))