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:
parent
f28f299413
commit
8971760ab5
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue