mirror of
				https://github.com/django/django.git
				synced 2025-10-31 03:54:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			279 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')
 | 
