File tree 1 file changed +9
-3
lines changed
Filter options
1 file changed +9
-3
lines changed
Original file line number Diff line number Diff line change @@ -74,8 +74,12 @@ def save_csv(self) -> None:
74
74
now_str = str (dt .datetime .utcnow ())
75
75
76
76
with (
77
- open ("include/branches.csv" , "w" , newline = "" ) as file_branches ,
78
- open ("include/end-of-life.csv" , "w" , newline = "" ) as file_eol ,
77
+ open (
78
+ "include/branches.csv" , "w" , encoding = "UTF-8" , newline = ""
79
+ ) as file_branches ,
80
+ open (
81
+ "include/end-of-life.csv" , "w" , encoding = "UTF-8" , newline = ""
82
+ ) as file_eol ,
79
83
):
80
84
csv_branches = csv .writer (file_branches , quoting = csv .QUOTE_MINIMAL )
81
85
csv_eol = csv .writer (file_eol , quoting = csv .QUOTE_MINIMAL )
@@ -117,7 +121,9 @@ def save_mermaid(self) -> None:
117
121
)
118
122
out .append (v )
119
123
120
- with open ("include/release-cycle.mmd" , "w" ) as f :
124
+ with open (
125
+ "include/release-cycle.mmd" , "w" , encoding = "UTF-8" , newline = "\n "
126
+ ) as f :
121
127
f .writelines (out )
122
128
123
129
You can’t perform that action at this time.
0 commit comments