mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			292 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			292 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.core.management.commands.startproject import Command as BaseCommand
 | |
| 
 | |
| 
 | |
| class Command(BaseCommand):
 | |
|     def add_arguments(self, parser):
 | |
|         super(Command, self).add_arguments(parser)
 | |
|         parser.add_argument('--extra', help='An arbitrary extra value passed to the context')
 |