Fixed #17469 -- Prevented a double URL-to-filesystem path translation in the media handler of LiveServerTestCase, which led to infinite redirection loops under Windows and test failures.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17416 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Aymeric Augustin 2012-02-01 20:08:10 +00:00
parent d8e75f6c6f
commit dcbd5eefd6
1 changed files with 1 additions and 1 deletions

View File

@ -998,7 +998,7 @@ class _MediaFilesHandler(StaticFilesHandler):
return settings.MEDIA_URL
def serve(self, request):
return serve(request, self.file_path(request.path),
return serve(request, request.path,
document_root=self.get_base_dir())