diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-09-11 04:25:55 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-09-11 04:25:55 +0000 |
| commit | a77a02359d8edb1bd880b47cd483b593ab276a66 (patch) | |
| tree | ac8b08cde93fdc84f89eb54ed48fe164d28af331 | |
| parent | a291952a7d324e1675ed0ee1f82bb2c4b4b2a5eb (diff) | |
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
| -rw-r--r-- | django/core/management/commands/runfcgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
