debian_config.py: add TENANT_TEMPLATE_DIRS which is mandatory

Closes #5771
This commit is contained in:
Jérôme Schneider 2014-10-20 11:28:28 +02:00
parent f0e7894d91
commit 4022ba011a
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ STATICFILES_DIRS = (os.path.join(VAR_DIR, 'static'),) + STATICFILES_DIRS
TEMPLATE_DIRS = (os.path.join(VAR_DIR, 'templates'),) + TEMPLATE_DIRS
LOCALE_PATHS = (os.path.join(VAR_DIR, 'locale'),) + LOCALE_PATHS
TENANT_BASE = os.path.join(VAR_DIR, 'tenants')
TENANT_TEMPLATE_DIRS = (TENANT_BASE,)
DATABASES = {
'default': {