Timothy J. Baek 11 月之前
父节点
当前提交
5e4a1ff6fb
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      backend/config.py

+ 2 - 1
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: