summaryrefslogtreecommitdiff
path: root/tests/user_commands/management/commands/outputwrapper.py
blob: 0bff3a49fbc0e7be9c02208610ee2c4b0cfe87a6 (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")