diff options
Diffstat (limited to 'PythonTBC/settings.py')
-rw-r--r-- | PythonTBC/settings.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/PythonTBC/settings.py b/PythonTBC/settings.py index 28eda1d..46131a9 100644 --- a/PythonTBC/settings.py +++ b/PythonTBC/settings.py @@ -1,7 +1,7 @@ # Django settings for PythonTBC project. from os.path import * -from local import * +from .local import * DEBUG = True TEMPLATE_DEBUG = DEBUG @@ -97,7 +97,7 @@ SECRET_KEY = 'a8zm$)bj&k9p2$1*biby#mo5fga#8$sr4&cmz%h=vum-xkbkme' TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader', -# 'django.template.loaders.eggs.Loader', + #'django.template.loaders.eggs.Loader', ) MIDDLEWARE_CLASSES = ( @@ -138,15 +138,13 @@ INSTALLED_APPS = ( # 'django.contrib.admindocs', 'tbc', 'comments', - 'south', + #'south', 'commentingapp', 'tbc_error_page', 'taggit', 'taggit_templatetags2', ) - - SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer' # A sample logging configuration. The only tangible logging |