Commit 34d84b5
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 e79bc40 commit 34d84b5
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1481 | 1481 | | |
1482 | 1482 | | |
1483 | 1483 | | |
1484 | | - | |
| 1484 | + | |
1485 | 1485 | | |
1486 | 1486 | | |
1487 | 1487 | | |
| |||
0 commit comments