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:
Malcolm Tredinnick 2009-03-20 01:43:35 +00:00
parent 420a35b9b7
commit 85733c5d51
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ def runfastcgi(argset=[], **kwargs):
wsgi_opts['debug'] = False # Turn off flup tracebacks
try:
module = importlib_import_module('.%s' % flup_module, 'flup')
module = importlib.import_module('.%s' % flup_module, 'flup')
WSGIServer = module.WSGIServer
except:
print "Can't import flup." + flup_module