Fixed #40 — make sure BASE_DIR isn’t a PathValue class anymore to prevent breakage.

This commit is contained in:
Jannis Leidel 2013-11-26 15:44:07 +01:00
parent 4191236b13
commit 4e2a4a6d30

View file

@ -15,7 +15,7 @@ from configurations import Configuration, values
class Common(Configuration):
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = values.PathValue(os.path.dirname(os.path.dirname(__file__)))
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/{{ docs_version }}/howto/deployment/checklist/