From 1a209c1a1ad1dcfcda9c1edce6c51d8c18979df8 Mon Sep 17 00:00:00 2001 From: pierre Date: Thu, 23 Nov 2023 18:57:51 +0100 Subject: [PATCH] correction encodage --- layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout.py b/layout.py index 2f8d985..5fd493c 100644 --- a/layout.py +++ b/layout.py @@ -693,7 +693,7 @@ class TgenLayout : ira = wx.GetApp().GetTopWindow() tgenpath = os.path.join(parametres['pathout'], 'tgen.csv') self.page.tgens, etoiles = ReadList(parametres['tgenspec'], ira.syscoding, sep="\t") - tgen = TGen(path = tgenpath, encoding = parametres['encoding']) + tgen = TGen(path = tgenpath, encoding = 'UTF-8') tgen.read() tgenlempath = os.path.join(parametres['pathout'], 'tgenlemchi2.csv') if os.path.exists(tgenlempath) : -- 2.7.4