Timothy J. Baek 11 tháng trước cách đây
mục cha
commit
5e4a1ff6fb
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  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: