Fix another typo in import correction.

This commit is contained in:
Bradley M. Kuhn 2015-03-08 18:16:33 -07:00
parent a5cd6ab63b
commit 71834b60ec
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
from django.shortcuts import render_to_response from django.shortcuts import render_to_response
from django import forms from django import forms
from conservancy.app.contacts.models import ContactEntry from conservancy.apps.contacts.models import ContactEntry
from django.forms import ModelForm from django.forms import ModelForm
def subscribe(request): def subscribe(request):

View file

@ -19,7 +19,7 @@
from django.conf.urls import patterns, url, include from django.conf.urls import patterns, url, include
from django.conf import settings from django.conf import settings
from conservancy.app.news.models import PressRelease, ExternalArticle from conservancy.apps.news.models import PressRelease, ExternalArticle
from conservancy.apps.news.views import NewsYearArchiveView, NewsMonthArchiveView, NewsDayArchiveView, NewsDateDetailView from conservancy.apps.news.views import NewsYearArchiveView, NewsMonthArchiveView, NewsDayArchiveView, NewsDateDetailView
info_dict = { info_dict = {