mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
Fixed #40 — make sure BASE_DIR isn’t a PathValue class anymore to prevent breakage.
This commit is contained in:
parent
4191236b13
commit
4e2a4a6d30
1 changed files with 1 additions and 1 deletions
|
|
@ -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/
|
||||
|
|
|
|||
Loading…
Reference in a new issue