Fixed #10556 -- Fixed a problem in the fastcgi server after r10088.
Thanks, Boo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10101 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
420a35b9b7
commit
85733c5d51
|
@ -129,7 +129,7 @@ def runfastcgi(argset=[], **kwargs):
|
||||||
wsgi_opts['debug'] = False # Turn off flup tracebacks
|
wsgi_opts['debug'] = False # Turn off flup tracebacks
|
||||||
|
|
||||||
try:
|
try:
|
||||||
module = importlib_import_module('.%s' % flup_module, 'flup')
|
module = importlib.import_module('.%s' % flup_module, 'flup')
|
||||||
WSGIServer = module.WSGIServer
|
WSGIServer = module.WSGIServer
|
||||||
except:
|
except:
|
||||||
print "Can't import flup." + flup_module
|
print "Can't import flup." + flup_module
|
||||||
|
|
Loading…
Reference in New Issue