summaryrefslogtreecommitdiff
path: root/tests/regressiontests/bash_completion/management/commands/test_command.py
blob: 5cb8820a8f55ea7b33f3abb8fd17bb3d6f4341a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import sys, os
from optparse import OptionParser, 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