diff options
Diffstat (limited to 'tests/user_commands/management/commands/outputwrapper.py')
| -rw-r--r-- | tests/user_commands/management/commands/outputwrapper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/user_commands/management/commands/outputwrapper.py b/tests/user_commands/management/commands/outputwrapper.py index bafc30d128..0bff3a49fb 100644 --- a/tests/user_commands/management/commands/outputwrapper.py +++ b/tests/user_commands/management/commands/outputwrapper.py @@ -3,6 +3,6 @@ from django.core.management.base import BaseCommand class Command(BaseCommand): def handle(self, **options): - self.stdout.write('Working...') + self.stdout.write("Working...") self.stdout.flush() - self.stdout.write('OK') + self.stdout.write("OK") |
