From a77a02359d8edb1bd880b47cd483b593ab276a66 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 11 Sep 2007 04:25:55 +0000 Subject: [PATCH] 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 --- django/core/management/commands/runfcgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management/commands/runfcgi.py b/django/core/management/commands/runfcgi.py index 599ac2dcd2..a60d4ebc59 100644 --- a/django/core/management/commands/runfcgi.py +++ b/django/core/management/commands/runfcgi.py @@ -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