PageRenderTime 69ms CodeModel.GetById 59ms RepoModel.GetById 1ms app.codeStats 0ms

/tests/regressiontests/bash_completion/management/commands/test_command.py

https://code.google.com/p/mango-py/
Python | 14 lines | 10 code | 4 blank | 0 comment | 0 complexity | d64be7093fca6184bd543e3aa352765e MD5 | raw file
Possible License(s): BSD-3-Clause
  1. import sys, os
  2. from optparse import OptionParser, make_option
  3. from django.core.management.base import BaseCommand
  4. class Command(BaseCommand):
  5. option_list = BaseCommand.option_list + (
  6. make_option("--list", action="store_true", dest="list",
  7. help="Print all options"),
  8. )
  9. def handle(self, *args, **options):
  10. pass