2012-07-17 06:26:31 +08:00
|
|
|
from django.core.management.commands.startproject import Command as BaseCommand
|
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2014-06-07 04:39:33 +08:00
|
|
|
def add_arguments(self, parser):
|
|
|
|
super(Command, self).add_arguments(parser)
|
|
|
|
parser.add_argument('--extra',
|
|
|
|
help='An arbitrary extra value passed to the context')
|