From cdf57ce5831cb396f257e765c994bd7390ea8651 Mon Sep 17 00:00:00 2001 From: argoneus Date: Fri, 21 Feb 2020 00:06:16 +0100 Subject: [PATCH] fixed quotes thanks j --- utage/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utage/translate.py b/utage/translate.py index 6ea96b4..2344b0a 100644 --- a/utage/translate.py +++ b/utage/translate.py @@ -78,7 +78,7 @@ def translate_file(file_in, tsv_out_dir, json_out_dir, is_global): raise 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 if is_global: