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