mirror of
https://github.com/django/django.git
synced 2025-07-24 05:36:15 +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,17 +1,15 @@
|
|||
from optparse import make_option
|
||||
|
||||
from django.core.management.base import BaseCommand
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
option_list = BaseCommand.option_list + (
|
||||
make_option('--option_a', '-a', action='store', dest='option_a', default='1'),
|
||||
make_option('--option_b', '-b', action='store', dest='option_b', default='2'),
|
||||
make_option('--option_c', '-c', action='store', dest='option_c', default='3'),
|
||||
)
|
||||
help = 'Test basic commands'
|
||||
requires_system_checks = False
|
||||
args = '[labels ...]'
|
||||
|
||||
def add_arguments(self, parser):
|
||||
parser.add_argument('args', nargs='*')
|
||||
parser.add_argument('--option_a', '-a', default='1')
|
||||
parser.add_argument('--option_b', '-b', default='2')
|
||||
parser.add_argument('--option_c', '-c', default='3')
|
||||
|
||||
def handle(self, *labels, **options):
|
||||
print('EXECUTE:BaseCommand labels=%s, options=%s' % (labels, sorted(options.items())))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue