Skip to content

Commit

Permalink
this might even fix changelogs (#8490)
Browse files Browse the repository at this point in the history
  • Loading branch information
vode-code authored May 31, 2024
1 parent d44357f commit bc7bf6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/changelog/generate_cl.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@
write_cl['delete-after'] = True

with open(Path.cwd().joinpath("tools/changelog/tags.yml")) as file:
tags = yaml.safe_load(file)
yamyl2 = yaml.YAML(typ='safe', pure=True)
tags = yamyl2.load(file)

write_cl['changes'] = []

Expand Down

0 comments on commit bc7bf6e

Please sign in to comment.