Skip to content

Commit

Permalink
Fixed #2732 -- Allow first positional argument to runfastcgi() to be …
Browse files Browse the repository at this point in the history
…optional.

Patch from James Crasta.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@3777 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
malcolmt committed Sep 21, 2006
1 parent f28f299 commit 8971760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/core/servers/fastcgi.py
Expand Up @@ -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:
Expand Down

0 comments on commit 8971760

Please sign in to comment.