diff options
| author | Joseph Kocherhans <joseph@jkocherhans.com> | 2007-11-30 04:32:25 +0000 |
|---|---|---|
| committer | Joseph Kocherhans <joseph@jkocherhans.com> | 2007-11-30 04:32:25 +0000 |
| commit | 4d52c80dd1b4c6aef9407b268ae720eeffd4d962 (patch) | |
| tree | 08e126f78db9968aa0830d1f092ed226e09e87b5 /django/core/handlers/modpython.py | |
| parent | 8b3d65e517f3127ff8929ba4caaea32937fb776b (diff) | |
newforms-admin: Merged from trunk up to [6670]. This is just before auto-escaping was checked in.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@6761 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/handlers/modpython.py')
| -rw-r--r-- | django/core/handlers/modpython.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py index 2a3e03f3dd..e81a65be4d 100644 --- a/django/core/handlers/modpython.py +++ b/django/core/handlers/modpython.py @@ -162,6 +162,7 @@ class ModPythonHandler(BaseHandler): # Apply response middleware for middleware_method in self._response_middleware: response = middleware_method(request, response) + response = self.apply_response_fixes(request, response) finally: dispatcher.send(signal=signals.request_finished) |
