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
This commit is contained in:
Malcolm Tredinnick 2006-09-21 13:45:24 +00:00
parent f28f299413
commit 8971760ab5
1 changed files with 1 additions and 1 deletions

View File

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