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:
Russell Keith-Magee 2007-08-16 13:41:42 +00:00
parent d5e695cd89
commit 296d8d4553
1 changed files with 2 additions and 2 deletions

View File

@ -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)