From 0fc823689046ddd88e0d00657751392d81f19c03 Mon Sep 17 00:00:00 2001 From: grisel-davy Date: Sat, 19 Dec 2020 17:36:45 +0100 Subject: [PATCH] Proper import local_settings --- litl/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litl/settings.py b/litl/settings.py index 6a04fe7..6490344 100644 --- a/litl/settings.py +++ b/litl/settings.py @@ -12,7 +12,7 @@ https://docs.djangoproject.com/en/3.1/ref/settings/ from pathlib import Path -from local_settings import * +from .local_settings import * # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent