mirror of
https://github.com/django/django.git
synced 2024-12-23 17:46:27 +00:00
10 lines
301 B
Python
10 lines
301 B
Python
from django.core.management.commands.startproject import Command as BaseCommand
|
|
|
|
|
|
class Command(BaseCommand):
|
|
def add_arguments(self, parser):
|
|
super().add_arguments(parser)
|
|
parser.add_argument(
|
|
"--extra", help="An arbitrary extra value passed to the context"
|
|
)
|