Remove django.contrib.comments and add MIDDLEWARE_CLASSES

This commit is contained in:
Grant McConnaughey 2015-04-23 15:10:25 -05:00
parent b554e65923
commit 3d48f181f9

View file

@ -14,10 +14,19 @@ INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sites',
'django.contrib.comments',
'avatar',
]
MIDDLEWARE_CLASSES = (
"django.middleware.common.BrokenLinkEmailsMiddleware",
"django.middleware.common.CommonMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
)
ROOT_URLCONF = 'tests.urls'
SITE_ID = 1