diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2006-09-21 13:45:24 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2006-09-21 13:45:24 +0000 |
| commit | 8971760ab540de6415c6cea2f6cb457b23bc2341 (patch) | |
| tree | 8cdfe2406a44257bdfe5df0b496c87378b406766 | |
| parent | f28f2994134fe6719f3186a0584cfc6dd0bffb52 (diff) | |
Fixed #2732 -- Allow first positional argument to runfastcgi() to be optional.
Patch from James Crasta.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3777 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/servers/fastcgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/servers/fastcgi.py b/django/core/servers/fastcgi.py index 7377bed1c5..c6507fe173 100644 --- a/django/core/servers/fastcgi.py +++ b/django/core/servers/fastcgi.py @@ -74,7 +74,7 @@ def fastcgi_help(message=None): print message return False -def runfastcgi(argset, **kwargs): +def runfastcgi(argset=[], **kwargs): options = FASTCGI_OPTIONS.copy() options.update(kwargs) for x in argset: |
