Browse Source

Fixed default cache backend.

Rafał Pitoń 11 years ago
parent
commit
e39c61886e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misago/project_template/project_name/settings.py

+ 1 - 1
misago/project_template/project_name/settings.py

@@ -44,7 +44,7 @@ DATABASES = {
 
 CACHES = {
     'default': {
-        'BACKEND': 'django.core.cache.backends.locmem.DummyCache',
+        'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
     }
 }