diff options
author | Hernani Cerqueira <hernani@viper6.dzone.com> | 2010-02-01 18:51:49 -0500 |
---|---|---|
committer | Hernani Cerqueira <hernani@viper6.dzone.com> | 2010-02-01 18:51:49 -0500 |
commit | 03236af24530e0a4b58c5651a40d2681f4bd3f35 (patch) | |
tree | b9d0af1179d902c99a571b0de07875c4eb6a129f /settings.py | |
parent | 8b7e11bd9f13ca73604ecad1ff333a588b58366d (diff) | |
download | askbot-03236af24530e0a4b58c5651a40d2681f4bd3f35.tar.gz askbot-03236af24530e0a4b58c5651a40d2681f4bd3f35.tar.bz2 askbot-03236af24530e0a4b58c5651a40d2681f4bd3f35.zip |
fixed fbconnect and sphinx settings not being properly verified
Diffstat (limited to 'settings.py')
-rwxr-xr-x | settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings.py b/settings.py index e45d4780..8609418e 100755 --- a/settings.py +++ b/settings.py @@ -74,10 +74,10 @@ INSTALLED_APPS = [ AUTHENTICATION_BACKENDS = ['django.contrib.auth.backends.ModelBackend',] -if check_local_setting('USE_SPHINX_SEARCH',True): +if USE_SPHINX_SEARCH: INSTALLED_APPS.append('djangosphinx') -if check_local_setting('USE_FB_CONNECT',True): +if USE_FB_CONNECT: INSTALLED_APPS.append('fbconnect') #load optional plugin module for external password login |