Some lines in Lokis csv output contain a comma character in the last (message) field, which breaks csv parsers. So I suggest to use the csv package to generate a compliant csv output (which effectively adds quote characters to such fields).
However, importing csv conflicts with the varable csv, so I head to rename it. To maintain maximum compatibility, I used csv.QUOTE_MINIMAL, so that only lines with a comma in the values are affected by this change.
Some lines in Lokis
csv
output contain a comma character in the last (message
) field, which breaks csv parsers. So I suggest to use thecsv
package to generate a compliant csv output (which effectively adds quote characters to such fields).However, importing csv conflicts with the varable
csv
, so I head to rename it. To maintain maximum compatibility, I usedcsv.QUOTE_MINIMAL
, so that only lines with a comma in the values are affected by this change.Regards, Jan