]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
PN
authorPascale Noyret <pascale.noyret@edf.fr>
Wed, 6 Dec 2006 10:49:55 +0000 (10:49 +0000)
committerPascale Noyret <pascale.noyret@edf.fr>
Wed, 6 Dec 2006 10:49:55 +0000 (10:49 +0000)
generator/Formatage.py

index c573d652648c62df6779c08bbe2334c008e37bba..46b2bbfc60396024841b280704bda1cc4312a97b 100644 (file)
@@ -186,12 +186,13 @@ class Formatage :
       longueur = self.longueur(self.texte_etape)
       increment = len(('\n'+self.indent_courant*' ')*ind + string.strip(s_mcsimp))
       #self.jdc_fini = self.jdc_fini + ('\n'+self.indent_courant*' ')*ind + string.strip(s_mcsimp)
-      if ((1-ind)*longueur+increment)  <= self.l_max :
+      if (bool_fonction == 1 ) :
+          self.texte_etape = self.texte_etape +s_mcsimp
+      elif ( ((1-ind)*longueur+increment) <= self.l_max ) :
           self.texte_etape = self.texte_etape + ('\n'+self.indent_courant*' ')*ind + string.strip(s_mcsimp)
       else :
           # il faut couper ...
-          if bool_fonction == 0 :
-             nom,valeur = string.split(s_mcsimp,self.sep,1)
+          nom,valeur = string.split(s_mcsimp,self.sep,1)
           chaine = self.creer_chaine(nom,valeur,'\n'+self.indent_courant*' ',ind)
           #self.jdc_fini = self.jdc_fini + ('\n'+self.indent_courant*' ')*ind + string.strip(s_mcsimp)
           self.texte_etape = self.texte_etape + chaine