Changeset 6219
- Timestamp:
- 09/14/07 16:36:39 (1 year ago)
- Files:
-
- django/trunk/django/core/handlers/base.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/handlers/base.py
r6164 r6219 143 143 this function converts them to absolute paths. 144 144 """ 145 if ' Location' in response.headers and http.get_host(request):145 if 'location' in response.headers and http.get_host(request): 146 146 response['Location'] = request.build_absolute_uri(response['Location']) 147 147 return response
