mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #5179 -- Added missing kwargs to startapp command. Thanks for the report, Vsevolod Solovyov <vsevolod.solovyov@gmail.com>.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5901 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -29,5 +29,5 @@ class ProjectCommand(Command): | ||||
|         super(ProjectCommand, self).__init__() | ||||
|         self.project_directory = project_directory | ||||
|  | ||||
|     def handle(self, app_name): | ||||
|         super(ProjectCommand, self).handle(app_name, self.project_directory) | ||||
|     def handle(self, app_name, **options): | ||||
|         super(ProjectCommand, self).handle(app_name, self.project_directory, **options) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user