Commit 41bae88
committed
Fix createCSVData on Windows
The csv module documentation says to open the file with newline='':
https://docs.python.org/3/library/csv.html#id4
Also, I'm pretty sure this isn't how you are supposed to use csv.writer.
delimiter='\n' doesn't seem right.
We should either let the csv writer actually generate the rows, or
remove it altogether and just write the string rows into the file.1 parent 02728a8 commit 41bae88
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1464 | 1464 | | |
1465 | 1465 | | |
1466 | 1466 | | |
1467 | | - | |
| 1467 | + | |
1468 | 1468 | | |
1469 | 1469 | | |
1470 | 1470 | | |
| |||
0 commit comments