From 71e794c26f1bef2d527474e70c76dfc58295911c Mon Sep 17 00:00:00 2001 From: sabaimran Date: Tue, 21 Nov 2023 10:57:21 -0800 Subject: [PATCH] Remove the sys.append line in the main.py file, as it's not required --- src/khoj/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/khoj/main.py b/src/khoj/main.py index cded9841..23d36b3d 100644 --- a/src/khoj/main.py +++ b/src/khoj/main.py @@ -25,7 +25,6 @@ from django.core.asgi import get_asgi_application from django.core.management import call_command # Initialize Django -sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) os.environ.setdefault("DJANGO_SETTINGS_MODULE", "khoj.app.settings") django.setup()