mirror of https://github.com/django/django.git
Removed redundant check from StaticFilesHandler.
This commit is contained in:
parent
b915b9f10f
commit
6a92bcf55b
|
@ -53,12 +53,10 @@ class StaticFilesHandler(WSGIHandler):
|
||||||
def get_response(self, request):
|
def get_response(self, request):
|
||||||
from django.http import Http404
|
from django.http import Http404
|
||||||
|
|
||||||
if self._should_handle(request.path):
|
try:
|
||||||
try:
|
return self.serve(request)
|
||||||
return self.serve(request)
|
except Http404 as e:
|
||||||
except Http404 as e:
|
return response_for_exception(request, e)
|
||||||
return response_for_exception(request, e)
|
|
||||||
return super().get_response(request)
|
|
||||||
|
|
||||||
def __call__(self, environ, start_response):
|
def __call__(self, environ, start_response):
|
||||||
if not self._should_handle(get_path_info(environ)):
|
if not self._should_handle(get_path_info(environ)):
|
||||||
|
|
Loading…
Reference in New Issue