Require LXML (maybe I'll fix this later).
[cas.git] / src / cas / settings.py
index a039d14..acc5988 100644 (file)
@@ -72,7 +72,7 @@ MIDDLEWARE_CLASSES = (
     'django.middleware.doc.XViewMiddleware',
 )
 
-ROOT_URLCONF = 'urls'
+ROOT_URLCONF = 'cas.urls'
 
 TEMPLATE_DIRS = (
     PROJECT_ROOT + '/templates',    
@@ -95,11 +95,6 @@ LOGOUT_URL = '/cas/logout/'
 CAS_CUSTOM_ATTRIBUTES_CALLBACK = 'utils.custom_attributes_callback'
 SESSION_COOKIE_NAME = 'fnpcas'
 
-# Python logging settings
-import logging
-import logging.config
-logging.config.fileConfig(path.join(PROJECT_ROOT, "logging.cfg"))
-
 # Import localsettings file, which may override settings defined here
 try:
     from localsettings import *