summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/management/commands/app_command.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-10-16 16:24:59 +0200
committerClaude Paroz <claude@2xlibre.net>2014-06-14 11:17:48 +0200
commit856863860352aa1f0288e6c9168a0e423c4f5184 (patch)
treeff4328eb54677bbca97428c03f508d8a417695ea /tests/admin_scripts/management/commands/app_command.py
parent79956d06946c881cb71958f27a12f62b9cab8de5 (diff)
Fixed #19973 -- Replaced optparse by argparse in management commands
Thanks Tim Graham for the review.
Diffstat (limited to 'tests/admin_scripts/management/commands/app_command.py')
-rw-r--r--tests/admin_scripts/management/commands/app_command.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/admin_scripts/management/commands/app_command.py b/tests/admin_scripts/management/commands/app_command.py
index f0981eba2d..7f2aff522c 100644
--- a/tests/admin_scripts/management/commands/app_command.py
+++ b/tests/admin_scripts/management/commands/app_command.py
@@ -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())))