diff options
Diffstat (limited to 'django/contrib/staticfiles/handlers.py')
-rw-r--r-- | django/contrib/staticfiles/handlers.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/django/contrib/staticfiles/handlers.py b/django/contrib/staticfiles/handlers.py index e711f9a476..8dedd60ce8 100644 --- a/django/contrib/staticfiles/handlers.py +++ b/django/contrib/staticfiles/handlers.py @@ -1,10 +1,9 @@ from django.conf import settings -from django.core.handlers.wsgi import get_path_info, WSGIHandler -from django.utils.six.moves.urllib.parse import urlparse -from django.utils.six.moves.urllib.request import url2pathname - from django.contrib.staticfiles import utils from django.contrib.staticfiles.views import serve +from django.core.handlers.wsgi import WSGIHandler, get_path_info +from django.utils.six.moves.urllib.parse import urlparse +from django.utils.six.moves.urllib.request import url2pathname class StaticFilesHandler(WSGIHandler): |