add support for local_settings.py

This commit is contained in:
Frédéric Péters 2014-07-08 08:46:59 +02:00
parent bae63f27ff
commit 14ed671d4d
1 changed files with 5 additions and 0 deletions

View File

@ -105,3 +105,8 @@ if os.environ.get('MULTITENANT_MODE'):
from tenant_settings import *
except ImportError:
pass
try:
from local_settings import *
except ImportError:
pass