Remove noop conservancy.context_processors imports.

You'll note this source doesn't exist in Git.
There's a reason for that.
This commit is contained in:
Brett Smith 2016-12-02 22:21:28 -05:00
parent 993f4bc72f
commit ce1b4b2528
8 changed files with 0 additions and 8 deletions

View file

@ -1,5 +1,4 @@
from django.shortcuts import render_to_response
from conservancy import context_processors as context_processors
from django.template import RequestContext
from django import forms
from conservancy.apps.contacts.models import ContactEntry

View file

@ -1,6 +1,5 @@
# from django.views.generic.list_detail import object_list
from django.shortcuts import render_to_response
from conservancy import context_processors as context_processors
from django.template import RequestContext
from django.http import Http404, HttpResponse
from django.template import loader

View file

@ -1,6 +1,5 @@
from conservancy.apps.fundgoal.models import FundraisingGoal
from django.shortcuts import get_object_or_404, render_to_response
from conservancy import context_processors as context_processors
from django.template import RequestContext
from django.http import JsonResponse

View file

@ -1,7 +1,6 @@
# from django.views.generic.list_detail import object_list
from django.views.generic import ListView
from django.template import RequestContext
from conservancy import context_processors as context_processors
from django.shortcuts import render_to_response
from django.views.generic.dates import YearArchiveView, MonthArchiveView, DayArchiveView, DateDetailView
from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger

View file

@ -1,5 +1,4 @@
from django.shortcuts import render_to_response
from conservancy import context_processors as context_processors
from django.template import RequestContext
from django import forms
from django.template import RequestContext

View file

@ -1,5 +1,4 @@
from conservancy.apps.supporters.models import Supporter
from django.shortcuts import get_object_or_404, render_to_response
from conservancy import context_processors as context_processors
from django.template import RequestContext

View file

@ -2,7 +2,6 @@ from django.contrib.syndication.views import Feed
from django.utils.feedgenerator import Rss201rev2Feed
from conservancy.apps.news.models import PressRelease
from conservancy.apps.blog.models import Entry as BlogEntry
from conservancy import context_processors as context_processors
from django.template import RequestContext
from django.shortcuts import render_to_response
from django.conf import settings

View file

@ -1,5 +1,4 @@
from django.shortcuts import render_to_response
from conservancy import context_processors as context_processors
from django.template import RequestContext
from conservancy.apps.supporters.models import Supporter as Supporter
from datetime import datetime, timedelta