diff options
Diffstat (limited to 'tests/user_commands/management/commands/set_option.py')
| -rw-r--r-- | tests/user_commands/management/commands/set_option.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/user_commands/management/commands/set_option.py b/tests/user_commands/management/commands/set_option.py index a6e3c9bb6a..5f8c01e541 100644 --- a/tests/user_commands/management/commands/set_option.py +++ b/tests/user_commands/management/commands/set_option.py @@ -2,9 +2,8 @@ from django.core.management.base import BaseCommand class Command(BaseCommand): - def add_arguments(self, parser): - parser.add_argument('--set') + parser.add_argument("--set") def handle(self, **options): - self.stdout.write('Set %s' % options['set']) + self.stdout.write("Set %s" % options["set"]) |
