Remove unused imports

This commit is contained in:
Magnus Hagander
2018-06-29 13:38:47 +02:00
parent 9a746bd6c1
commit 0c6099e236
14 changed files with 9 additions and 29 deletions

View File

@ -1,10 +1,7 @@
from django.http import HttpResponseRedirect, HttpResponse
from django.conf import settings
# Use thread local storage to pass the username down.
# http://code.djangoproject.com/wiki/CookBookThreadlocalsAndUser
try:
from threading import local, currentThread
from threading import local
except ImportError:
from django.utils._threading_local import local