From 0775eaf5f729a239dc59c844e28b77771c22eee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Schneider?= Date: Tue, 3 Jun 2014 19:38:20 +0200 Subject: [PATCH] local_config instead of local_settings --- rp_meyzieu/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rp_meyzieu/config.py b/rp_meyzieu/config.py index 71c428b..cf20c0a 100644 --- a/rp_meyzieu/config.py +++ b/rp_meyzieu/config.py @@ -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