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:
parent
d5e695cd89
commit
296d8d4553
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue