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

+ 1 - 1
backend/config.py

@@ -124,7 +124,7 @@ def parse_section(section):
 
 
 try:
 try:
     changelog_path = BASE_DIR / "CHANGELOG.md"
     changelog_path = BASE_DIR / "CHANGELOG.md"
-    with open(str(changelog_path.absolute()), "r") as file:
+    with open(str(changelog_path.absolute()), "r", encoding="utf8") as file:
         changelog_content = file.read()
         changelog_content = file.read()
 
 
 except:
 except: