Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing encoding and use a more descriptive filename
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
  • Loading branch information
hugovk and CAM-Gerlach authored Nov 27, 2022
commit 00f6d0d5bbbe063c205875e93edc5c55b1d902c4
4 changes: 2 additions & 2 deletions generate-release-cycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class Versions:
"""For converting JSON to CSV and Mermaid"""

def __init__(self) -> None:
with open("include/release-cycle.json") as f:
self.versions = json.load(f)
with open("include/release-cycle.json", encoding="UTF-8") as in_file:
self.versions = json.load(in_file)

def save_csv(self) -> None:
"""Output CSV files"""
Expand Down