]> git.openstreetmap.org Git - osqa.git/blobdiff - settings.py
Fixes OSQA 281, Start/Stop notificatins button does not store the notifications and...
[osqa.git] / settings.py
index 866a05674548bdeaed02e97ba6edae33d77ad5dd..ba549f12f6d657cefe1b9d25e801e55f36eea39d 100644 (file)
@@ -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 = [
@@ -79,16 +79,17 @@ if DEBUG:
     except:
         pass
 
-try:
-    import south
-    INSTALLED_APPS.append('south')
-except:
-    pass
+#try:
+#    import south
+#    INSTALLED_APPS.append('south')
+#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',]