summaryrefslogtreecommitdiff
path: root/tests/user_commands/management/commands/outputwrapper.py
blob: bafc30d1287825d215b151cfb0f9c3299771c1f3 (plain)
1
2
3
4
5
6
7
8
from django.core.management.base import BaseCommand


class Command(BaseCommand):
    def handle(self, **options):
        self.stdout.write('Working...')
        self.stdout.flush()
        self.stdout.write('OK')