Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/user_commands/management/commands/transaction.py
blob: ca531b2b97e6c663c21c1a0ae44c41677471b51f (plain)
1
2
3
4
5
6
7
8
9
10
from django.core.management.base import BaseCommand


class Command(BaseCommand):
    help = "Say hello."
    args = ''
    output_transaction = True

    def handle(self, *args, **options):
        return 'Hello!'