local_config instead of local_settings

This commit is contained in:
Jérôme Schneider 2014-06-03 19:38:20 +02:00
parent dbf96cd038
commit 0775eaf5f7
1 changed files with 2 additions and 2 deletions

View File

@ -120,8 +120,8 @@ storage_backend = "mandaye.backends.sql"
# Import local config
try:
from local_settings import *
from local_config import *
except ImportError, e:
if 'local_settings' in e.args[0]:
if 'local_config' in e.args[0]:
pass