Skip to content

Commit

Permalink
Fixed #10556 -- Fixed a problem in the fastcgi server after r10088.
Browse files Browse the repository at this point in the history
Thanks, Boo.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10101 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
malcolmt committed Mar 20, 2009
1 parent 420a35b commit 85733c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/core/servers/fastcgi.py
Expand Up @@ -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
Expand Down

0 comments on commit 85733c5

Please sign in to comment.