0
0
mirror of https://github.com/django/django.git synced 2024-11-30 23:20:50 +01:00
django/tests/user_commands/management/commands/common_args.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
491 B
Python
Raw Normal View History

from argparse import ArgumentError
from django.core.management.base import BaseCommand, CommandError
class Command(BaseCommand):
def add_arguments(self, parser):
try:
parser.add_argument("--version", action="version", version="A.B.C")
except ArgumentError:
pass
else:
raise CommandError("--version argument does no yet exist")
def handle(self, *args, **options):
return "Detected that --version already exists"