summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/management/commands/app_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/admin_scripts/management/commands/app_command.py')
-rw-r--r--tests/admin_scripts/management/commands/app_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_scripts/management/commands/app_command.py b/tests/admin_scripts/management/commands/app_command.py
index 5f221f48ee..4706645484 100644
--- a/tests/admin_scripts/management/commands/app_command.py
+++ b/tests/admin_scripts/management/commands/app_command.py
@@ -4,7 +4,7 @@ from django.core.management.base import AppCommand
class Command(AppCommand):
help = 'Test Application-based commands'
requires_model_validation = False
- args = '[appname ...]'
+ args = '[app_label ...]'
def handle_app_config(self, app_config, **options):
print('EXECUTE:AppCommand name=%s, options=%s' % (app_config.name, sorted(options.items())))