From 347483203aac7a7ee86822cabd570c1226d47045 Mon Sep 17 00:00:00 2001 From: Matthew Mongeau <halogenandtoast@gmail.com> Date: Tue, 10 Jul 2012 17:37:42 -0400 Subject: [PATCH] Unscope URLCONF from mitx --- cms/envs/common.py | 2 +- lms/envs/common.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index 9782ef2fd0d..4f801aa29a4 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -118,7 +118,7 @@ TEMPLATE_DEBUG = False SITE_ID = 1 SITE_NAME = "localhost:8000" HTTPS = 'on' -ROOT_URLCONF = 'mitx.cms.urls' +ROOT_URLCONF = 'cms.urls' IGNORABLE_404_ENDS = ('favicon.ico') # Email diff --git a/lms/envs/common.py b/lms/envs/common.py index 05a1ba4b30a..117c433aae7 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -155,7 +155,7 @@ TEMPLATE_DEBUG = False SITE_ID = 1 SITE_NAME = "localhost:8000" HTTPS = 'on' -ROOT_URLCONF = 'mitx.lms.urls' +ROOT_URLCONF = 'lms.urls' IGNORABLE_404_ENDS = ('favicon.ico') # Email -- GitLab