1
0
mirror of https://github.com/django/django.git synced 2025-07-19 09:09:13 +00:00

[1.9.x] Removed an unused import.

This commit is contained in:
Tim Graham 2015-12-28 17:46:33 -05:00
parent 23cad094f6
commit 15af2e806b

View File

@ -5,7 +5,6 @@ from django.contrib.auth.decorators import login_required
from django.core.serializers.json import DjangoJSONEncoder from django.core.serializers.json import DjangoJSONEncoder
from django.http import HttpResponse, HttpResponseRedirect, JsonResponse from django.http import HttpResponse, HttpResponseRedirect, JsonResponse
from django.shortcuts import render from django.shortcuts import render
from django.template import RequestContext
from django.template.loader import render_to_string from django.template.loader import render_to_string
from django.test import Client from django.test import Client
from django.test.client import CONTENT_TYPE_RE from django.test.client import CONTENT_TYPE_RE