fixed quotes thanks j
This commit is contained in:
parent
15afb39759
commit
cdf57ce583
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ def translate_file(file_in, tsv_out_dir, json_out_dir, is_global):
|
||||||
raise
|
raise
|
||||||
|
|
||||||
with open(file_in, "r") as tsv_file:
|
with open(file_in, "r") as tsv_file:
|
||||||
tsv = csv.DictReader(tsv_file, delimiter="\t", quotechar='"')
|
tsv = csv.DictReader(tsv_file, delimiter="\t", quoting=csv.QUOTE_NONE)
|
||||||
|
|
||||||
t_fieldnames = tsv.fieldnames
|
t_fieldnames = tsv.fieldnames
|
||||||
if is_global:
|
if is_global:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue