mirror of
https://github.com/django/django.git
synced 2025-08-31 07:47:37 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue