fix local_settings import

This commit is contained in:
Jérôme Schneider 2014-06-03 19:31:26 +02:00
parent e3c00750dc
commit dbf96cd038
1 changed files with 4 additions and 3 deletions

View File

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