summaryrefslogtreecommitdiff
path: root/tests/regressiontests/bash_completion/management/commands/test_command.py
blob: 0f5750645cba88a1fae0b96406d7b29523be3a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from optparse import make_option

from django.core.management.base import BaseCommand


class Command(BaseCommand):
    option_list = BaseCommand.option_list + (
        make_option("--list", action="store_true", dest="list",
                    help="Print all options"),
    )

    def handle(self, *args, **options):
        pass