From f86004a4d3f642463a6faac72a72b61e975d9f29 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 20 Feb 2006 04:36:17 +0000 Subject: Fixed #1376 -- Undid [2358], which broke flatpages. Thanks, Tom Tobin git-svn-id: http://code.djangoproject.com/svn/django/trunk@2364 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/handlers/modpython.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'django/core/handlers/modpython.py') diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py index aed8e140ba..eec35ff072 100644 --- a/django/core/handlers/modpython.py +++ b/django/core/handlers/modpython.py @@ -144,6 +144,10 @@ class ModPythonHandler(BaseHandler): finally: db.db.close() + # Apply response middleware + for middleware_method in self._response_middleware: + response = middleware_method(request, response) + # Convert our custom HttpResponse object back into the mod_python req. populate_apache_request(response, req) return 0 # mod_python.apache.OK -- cgit v1.3