Author: mtredinnick Date: 2009-03-19 20:43:35 -0500 (Thu, 19 Mar 2009) New Revision: 10101
Modified: django/trunk/django/core/servers/fastcgi.py Log: Fixed #10556 -- Fixed a problem in the fastcgi server after r10088. Thanks, Boo. Modified: django/trunk/django/core/servers/fastcgi.py =================================================================== --- django/trunk/django/core/servers/fastcgi.py 2009-03-20 01:37:34 UTC (rev 10100) +++ django/trunk/django/core/servers/fastcgi.py 2009-03-20 01:43:35 UTC (rev 10101) @@ -129,7 +129,7 @@ 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 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---