From 21799ba14210fda2223b6881cc2338379bddaf28 Mon Sep 17 00:00:00 2001 From: Benbb96 Date: Mon, 11 Mar 2024 14:46:27 +0100 Subject: [PATCH] Revert "Set an absolute path to get the module recognized when running from root folder" This reverts commit c2276ce7e16c2d90f99ba797dd1b93ec66b96f99. --- demo/demodesk/config/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/demodesk/config/settings.py b/demo/demodesk/config/settings.py index 64ad1738..a8366d22 100644 --- a/demo/demodesk/config/settings.py +++ b/demo/demodesk/config/settings.py @@ -68,7 +68,7 @@ MIDDLEWARE = [ 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] -ROOT_URLCONF = 'demo.demodesk.config.urls' +ROOT_URLCONF = 'demodesk.config.urls' TEMPLATES = [ { @@ -87,7 +87,7 @@ TEMPLATES = [ }, ] -WSGI_APPLICATION = 'demo.demodesk.config.wsgi.application' +WSGI_APPLICATION = 'demodesk.config.wsgi.application' # django-helpdesk configuration settings