From d899d6731149e224436f38b79139c2518084e360 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 29 Jun 2014 18:25:54 -0400 Subject: [PATCH] Set the SITE_ROOT to be the same as the BASE_DIR by default Useful for PYPI based installs, can be updated easily --- mayan/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/settings.py b/mayan/settings.py index 71c33be811..8707921014 100644 --- a/mayan/settings.py +++ b/mayan/settings.py @@ -14,7 +14,7 @@ import os ugettext = lambda s: s BASE_DIR = os.path.abspath(os.path.dirname(__file__)) -SITE_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) +SITE_ROOT = BASE_DIR # Quick-start development settings - unsuitable for production