require MULTITENANT_MODE to be set to "yes" to enable (#5063)

This commit is contained in:
Frédéric Péters 2014-08-29 10:26:32 +02:00
parent ed2cecf496
commit 2368676b2f
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ try:
except ImportError:
pass
if os.environ.get('MULTITENANT_MODE'):
if os.environ.get('MULTITENANT_MODE', 'no') == 'yes':
try:
from tenant_settings import *
except ImportError: