Updated runfcgi management command to include 'subcommand' argument to usage()

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6092 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-09-11 04:25:55 +00:00
parent a291952a7d
commit a77a02359d
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,6 @@ class Command(BaseCommand):
from django.core.servers.fastcgi import runfastcgi
runfastcgi(args)
def usage(self):
def usage(self, subcommand):
from django.core.servers.fastcgi import FASTCGI_HELP
return FASTCGI_HELP