From 34f589ba88ae8ce7cf40c49e0e623f90cad2046d Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Tue, 7 May 2019 17:25:05 +0200 Subject: [PATCH] Moved unnecessarily nested import. --- django/contrib/staticfiles/handlers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/django/contrib/staticfiles/handlers.py b/django/contrib/staticfiles/handlers.py index 8618f0e28e..b0aa66036d 100644 --- a/django/contrib/staticfiles/handlers.py +++ b/django/contrib/staticfiles/handlers.py @@ -6,6 +6,7 @@ from django.contrib.staticfiles import utils from django.contrib.staticfiles.views import serve from django.core.handlers.exception import response_for_exception from django.core.handlers.wsgi import WSGIHandler, get_path_info +from django.http import Http404 class StaticFilesHandler(WSGIHandler): @@ -51,8 +52,6 @@ class StaticFilesHandler(WSGIHandler): return serve(request, self.file_path(request.path), insecure=True) def get_response(self, request): - from django.http import Http404 - try: return self.serve(request) except Http404 as e: