mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00
Fixed #19973 -- Replaced optparse by argparse in management commands
Thanks Tim Graham for the review.
This commit is contained in:
parent
79956d0694
commit
8568638603
8 changed files with 202 additions and 151 deletions
|
@ -4,7 +4,6 @@ from django.core.management.base import AppCommand
|
|||
class Command(AppCommand):
|
||||
help = 'Test Application-based commands'
|
||||
requires_system_checks = False
|
||||
args = '[app_label ...]'
|
||||
|
||||
def handle_app_config(self, app_config, **options):
|
||||
print('EXECUTE:AppCommand name=%s, options=%s' % (app_config.name, sorted(options.items())))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue