Removed unused imports (pyflakes complaints)

- Legacy-Id: 1765
This commit is contained in:
Pasi Eronen 2009-11-03 11:36:59 +00:00
parent f44686be6e
commit c726a8d837
5 changed files with 2 additions and 9 deletions

View file

@ -1,13 +1,8 @@
# Copyright The IETF Trust 2007, All Rights Reserved
# Create your views here.
from django.http import HttpResponse
from django.shortcuts import render_to_response
from django.views.generic.simple import direct_to_template
from ietf.idtracker.models import ChairsHistory
from ietf.idtracker.models import PersonOrOrgInfo
from ietf.idtracker.models import Role
from ietf.announcements.models import Announcement

View file

@ -1,7 +1,7 @@
# Copyright The IETF Trust 2007, All Rights Reserved
# Create your views here.
from django.http import HttpResponseRedirect, HttpResponsePermanentRedirect
from django.http import HttpResponsePermanentRedirect
from django import newforms as forms
from django.template import RequestContext
from django.shortcuts import get_object_or_404, render_to_response

View file

@ -31,7 +31,6 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import unittest
import re
from django.test.client import Client
from ietf.utils.test_utils import SimpleUrlTestCase, RealDatabaseTest
import ietf.utils.test_runner as test_runner

View file

@ -1,7 +1,7 @@
# Copyright The IETF Trust 2007, All Rights Reserved
from django.conf.urls.defaults import patterns
from ietf.ipr import models, views, new, search
from ietf.ipr import views, new, search
urlpatterns = patterns('',
(r'^$', views.showlist),

View file

@ -4,7 +4,6 @@ import django.utils.html
from django.shortcuts import render_to_response as render, get_object_or_404
from django.template import RequestContext
from django.template.loader import render_to_string
from django.utils.html import escape
from django.http import HttpResponse, Http404
from ietf.idtracker.models import IETFWG
from ietf.ipr.models import IprDetail, SELECT_CHOICES, LICENSE_CHOICES