This commit is contained in:
Timothy J. Baek 2024-05-25 15:54:00 -07:00
parent 74ca4189e2
commit 5e4a1ff6fb
1 changed files with 2 additions and 1 deletions

View File

@ -123,7 +123,8 @@ def parse_section(section):
try: 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() changelog_content = file.read()
except: except: