diff options
| author | Claude Paroz <claude@2xlibre.net> | 2018-06-05 11:58:38 +0200 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2018-06-05 11:58:38 +0200 |
| commit | 1fac9740675b8dbea3952b58102a643c67e951e4 (patch) | |
| tree | 75d15fb875f31c85cf4dd9f7b15f26c84541deb5 | |
| parent | 3cf45af3630890ad85112f9ea8af869c8daef17b (diff) | |
Refs #29353 -- Removed duplicated logic in StaticFilesHandler.get_response().
Thanks Sergey Fursov for spotting the issue.
| -rw-r--r-- | django/contrib/staticfiles/handlers.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/contrib/staticfiles/handlers.py b/django/contrib/staticfiles/handlers.py index 0c85c1ce40..95466355a4 100644 --- a/django/contrib/staticfiles/handlers.py +++ b/django/contrib/staticfiles/handlers.py @@ -57,9 +57,6 @@ class StaticFilesHandler(WSGIHandler): try: return self.serve(request) except Http404 as e: - if settings.DEBUG: - from django.views import debug - return debug.technical_404_response(request, e) return response_for_exception(request, e) return super().get_response(request) |
