diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-09-28 01:56:02 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-09-28 01:56:02 +0000 |
| commit | 15e7805ae4e5a1ae30ec240a3e1ad6b8a4e32269 (patch) | |
| tree | 2cd4447d41b59ed86ff34d510a9836c552b6bcda /django/core/handlers/modpython.py | |
| parent | 0cc18151706d4f85e47b0171c63a63f51e0adcce (diff) | |
Changed BaseHandler.get_response() to take a single parameter (an HttpRequest object) rather than a URL and the HttpRequest object, which is redundant
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3875 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/handlers/modpython.py')
| -rw-r--r-- | django/core/handlers/modpython.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py index 0bb604436e..78fc9f1759 100644 --- a/django/core/handlers/modpython.py +++ b/django/core/handlers/modpython.py @@ -150,7 +150,7 @@ class ModPythonHandler(BaseHandler): dispatcher.send(signal=signals.request_started) try: request = ModPythonRequest(req) - response = self.get_response(req.uri, request) + response = self.get_response(request) # Apply response middleware for middleware_method in self._response_middleware: |
