mirror of
https://github.com/django/django.git
synced 2025-07-22 20:55:17 +00:00
Converted remaining management commands to argparse
This commit is contained in:
parent
4b4524291a
commit
f17b24e407
45 changed files with 496 additions and 569 deletions
|
@ -1,11 +1,8 @@
|
|||
from optparse import make_option
|
||||
|
||||
from django.core.management.commands.startproject import Command as BaseCommand
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
option_list = BaseCommand.option_list + (
|
||||
make_option('--extra',
|
||||
action='store', dest='extra',
|
||||
help='An arbitrary extra value passed to the context'),
|
||||
)
|
||||
def add_arguments(self, parser):
|
||||
super(Command, self).add_arguments(parser)
|
||||
parser.add_argument('--extra',
|
||||
help='An arbitrary extra value passed to the context')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue