From 4a37fa206752e4816a0f9e182dba2d7db2fae54f Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 28 Sep 2017 09:53:49 +0200 Subject: Change CHIMERE_SEARCH_ENGINE to HAYSTACK_SEARCH_ENGINE --- settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'settings.py') diff --git a/settings.py b/settings.py index cc5ed21..42eaa4a 100644 --- a/settings.py +++ b/settings.py @@ -141,8 +141,8 @@ CHIMERE_THUMBS_SCALE_HEIGHT = 250 CHIMERE_THUMBS_SCALE_WIDTH = None # search engine -CHIMERE_SEARCH_ENGINE = False CHIMERE_SEARCH_LANGUAGE = 'french' +HAYSTACK_SEARCH_ENGINE = False HAYSTACK_CONNECTIONS = { 'default': { @@ -292,7 +292,7 @@ INSTALLED_APPS.insert(INSTALLED_APPS.index('chimere'), PROJECT_APP) for app in EXTRA_APPS: INSTALLED_APPS.append(app) -if CHIMERE_SEARCH_ENGINE: +if HAYSTACK_SEARCH_ENGINE: INSTALLED_APPS.append('haystack') if 'LOGGING' not in globals(): -- cgit v1.2.3