summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2012-06-17 15:38:22 +0800
committerJeremy Kerr <jk@ozlabs.org>2012-06-17 16:10:24 +0800
commite36dbad0fb969e7afdd97d3336386327564db5ae (patch)
tree8b36b5cff6d9aa5553d0e52a5fc09d636e8f0270 /apps
parente5dbc3283ce9b3ea817339cc0ec3056f04fbf897 (diff)
downloadpatchwork-e36dbad0fb969e7afdd97d3336386327564db5ae.tar.bz2
patchwork-e36dbad0fb969e7afdd97d3336386327564db5ae.tar.xz
settings: Use new class for auth context processor
Since django 1.2 auth module is in contrib, not core. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.py b/apps/settings.py
index b8026a5..081258d 100644
--- a/apps/settings.py
+++ b/apps/settings.py
@@ -82,7 +82,7 @@ MEDIA_ROOT = os.path.join(
ROOT_DIR, 'lib', 'python', 'django', 'contrib', 'admin', 'media')
TEMPLATE_CONTEXT_PROCESSORS = (
- "django.core.context_processors.auth",
+ "django.contrib.auth.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media")