From 96176d0080e0d4efbd29d98c0df700a64a82acdc Mon Sep 17 00:00:00 2001 From: "pascale.noyret" Date: Tue, 18 Apr 2017 17:07:29 +0200 Subject: [PATCH] optim eciture --- generator/Formatage.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/generator/Formatage.py b/generator/Formatage.py index 7a1b59c8..0dc4c057 100644 --- a/generator/Formatage.py +++ b/generator/Formatage.py @@ -234,8 +234,11 @@ class Formatage (object): texte est une string qui peut contenir des retours chariots Cette méthode retourne la longueur de la dernière ligne de texte """ - liste = texte.split('\n') - return len(liste[-1]) + #liste = texte.split('\n') + #return len(liste[-1]) + if texte [-1] == '\n' : return 0 + return len(texte[texte.rfind('\n'):-1]) + def creer_chaine(self,nom,valeur,increment,ind): """ -- 2.39.2