mirror of
https://github.com/django/django.git
synced 2024-12-26 11:06:07 +00:00
ce3351b950
This partially reverts c3055242c8
.
Thanks Adam Johnson and Carlton Gibson for the reviews.
17 lines
491 B
Python
17 lines
491 B
Python
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'
|