Index: ./django/core/servers/fastcgi.py =================================================================== --- ./django/core/servers/fastcgi.py (revision 7120) +++ ./django/core/servers/fastcgi.py (working copy) @@ -69,6 +69,7 @@ 'minspare': 2, 'maxchildren': 50, 'maxrequests': 0, + 'debug': False, # flup tracebacks } def fastcgi_help(message=None): @@ -119,8 +120,6 @@ else: return fastcgi_help("ERROR: Implementation must be one of prefork or thread.") - wsgi_opts['debug'] = False # Turn off flup tracebacks - try: WSGIServer = getattr(__import__('flup.' + flup_module, '', '', flup_module), 'WSGIServer') except: