On Wed, Dec 22, 2010 at 8:52 AM, Richard Brosnahan <theb...@gmail.com>wrote:
> The .fcgi script runs until I get to the line where I try to execute > runfastcgi. > > from django.core.servers.fastcgi import runfastcgi > runfastcgi(method="threaded", daemonize="false") > > [snip] > > I get an error saying "method" is not defined, and "daemonize" is not > defined. Further, those parameters don't match the method in the source: > > fastcgi.py:89: > def runfastcgi(argset=[], **kwargs): > > You are passing a couple of keyword arguments to a function that accepts keyword arguments (**kwargs), that's not a problem. Nor is not passing argset, since the function definition includes a default value for that if it is not passed by the caller. Specifics of the exact error message you are getting may help someone help you; the problem is not that the provided arguments don't match what is accepted by that function definition. Karen -- http://tracey.org/kmt/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.