This commit is contained in:
Timothy J. Baek 2024-05-25 15:56:47 -07:00
parent 5e4a1ff6fb
commit c1526b0022
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ def parse_section(section):
try:
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()
except: