X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/596fa1bf821c572f45c16ba92cb0e65211f6a3ae..3fcef4ec7d2509284a43a2325ae2341d5553ab35:/settings.py diff --git a/settings.py b/settings.py index 866a056..7b9e1f0 100644 --- a/settings.py +++ b/settings.py @@ -13,7 +13,7 @@ TEMPLATE_LOADERS = ( 'django.template.loaders.app_directories.load_template_source', 'forum.modules.module_templates_loader', 'forum.skins.load_template_source', -# 'django.template.loaders.eggs.load_template_source', +# 'django.template.loaders.eggs.load_template_source', ) MIDDLEWARE_CLASSES = [ @@ -71,7 +71,7 @@ INSTALLED_APPS = [ 'forum', ] -if DEBUG: +if DEBUG and False: try: import debug_toolbar MIDDLEWARE_CLASSES.append('debug_toolbar.middleware.DebugToolbarMiddleware') @@ -85,10 +85,11 @@ try: except: pass -try: - import rosetta - INSTALLED_APPS.append('rosetta') -except: - pass +if not DEBUG: + try: + import rosetta + INSTALLED_APPS.append('rosetta') + except: + pass AUTHENTICATION_BACKENDS = ['django.contrib.auth.backends.ModelBackend',]