1
0
mirror of https://github.com/django/django.git synced 2025-04-01 03:56:42 +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:
Malcolm Tredinnick 2006-09-21 13:45:24 +00:00
parent f28f299413
commit 8971760ab5

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: