From 5e4a1ff6fbb68dd6a64980cd79dfce3e782c62e5 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sat, 25 May 2024 15:54:00 -0700 Subject: [PATCH] fix --- backend/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/config.py b/backend/config.py index ac880c869..4ba33f076 100644 --- a/backend/config.py +++ b/backend/config.py @@ -123,7 +123,8 @@ def parse_section(section): try: - with open(BASE_DIR / "CHANGELOG.md", "r") as file: + changelog_path = BASE_DIR / "CHANGELOG.md" + with open(str(changelog_path.absolute()), "r") as file: changelog_content = file.read() except: