Commit dcbd5eef authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Fixed #17469 -- Prevented a double URL-to-filesystem path translation in the...

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
parent d8e75f6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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())