diff options
Diffstat (limited to 'tests/regressiontests/admin_scripts/management/commands/app_command.py')
| -rw-r--r-- | tests/regressiontests/admin_scripts/management/commands/app_command.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_scripts/management/commands/app_command.py b/tests/regressiontests/admin_scripts/management/commands/app_command.py index f72e912ac0..6adab6eafd 100644 --- a/tests/regressiontests/admin_scripts/management/commands/app_command.py +++ b/tests/regressiontests/admin_scripts/management/commands/app_command.py @@ -1,5 +1,6 @@ from django.core.management.base import AppCommand + class Command(AppCommand): help = 'Test Application-based commands' requires_model_validation = False @@ -7,4 +8,4 @@ class Command(AppCommand): def handle_app(self, app, **options): print 'EXECUTE:AppCommand app=%s, options=%s' % (app, sorted(options.items())) - + |
