From 6bd1feff3beba648d376ab9f90db9b03035d1835 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Mon, 23 Oct 2017 08:57:47 +1100 Subject: [PATCH] Whoops, make sure BASE_DIR is set correctly --- lemoncurry/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemoncurry/settings/base.py b/lemoncurry/settings/base.py index ec27039..e009841 100644 --- a/lemoncurry/settings/base.py +++ b/lemoncurry/settings/base.py @@ -13,7 +13,7 @@ https://docs.djangoproject.com/en/1.11/ref/settings/ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) -BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) # Quick-start development settings - unsuitable for production