mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-14 13:25:20 +00:00
fix
This commit is contained in:
parent
5e4a1ff6fb
commit
c1526b0022
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue