2011-07-13 17:35:51 +08:00
|
|
|
from optparse import make_option
|
2009-11-18 19:10:50 +08:00
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
2009-12-02 08:30:00 +08:00
|
|
|
|
2009-11-18 19:10:50 +08:00
|
|
|
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
|