From addc492c275f3d410de8b72fa629f73d9a42e86f Mon Sep 17 00:00:00 2001 From: Pascale Noyret Date: Mon, 4 Oct 2010 09:57:00 +0000 Subject: [PATCH] *** empty log message *** --- Aster/Cata/cataSTA9/Macro/calc_table_ops.py | 16 ++++++++-------- Aster/Cata/cataSTA9/Macro/recal.py | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Aster/Cata/cataSTA9/Macro/calc_table_ops.py b/Aster/Cata/cataSTA9/Macro/calc_table_ops.py index dabeeb7b..4e2be5e7 100644 --- a/Aster/Cata/cataSTA9/Macro/calc_table_ops.py +++ b/Aster/Cata/cataSTA9/Macro/calc_table_ops.py @@ -1,4 +1,4 @@ -#@ MODIF calc_table_ops Macro DATE 05/01/2010 AUTEUR MACOCCO K.MACOCCO +#@ MODIF calc_table_ops Macro DATE 07/09/2010 AUTEUR MACOCCO K.MACOCCO # -*- coding: iso-8859-1 -*- # CONFIGURATION MANAGEMENT OF EDF VERSION # ====================================================================== @@ -21,6 +21,7 @@ # RESPONSABLE MCOURTOI M.COURTOIS from types import * EnumTypes = (ListType, TupleType) +import os def calc_table_ops(self, TABLE, ACTION, INFO, **args): """ @@ -52,7 +53,6 @@ def calc_table_ops(self, TABLE, ACTION, INFO, **args): DETRUIRE = self.get_cmd('DETRUIRE') # 0. faut-il utiliser une table dérivée - form_sens='\n... SENSIBILITE AU PARAMETRE %s (SD COMP %s)' if args['SENSIBILITE']: ncomp = self.jdc.memo_sensi.get_nocomp(TABLE.nom, args['SENSIBILITE'].nom) sdtab = table_jeveux(ncomp) @@ -136,7 +136,8 @@ def calc_table_ops(self, TABLE, ACTION, INFO, **args): tab.fromfunction(occ['NOM_PARA'], occ['FORMULE']) if INFO == 2: vectval = getattr(tab, occ['NOM_PARA']).values() - aster.affiche('MESSAGE', 'Ajout de la colonne %s : %s' % (occ['NOM_PARA']+repr(vectval))+'\n') + aster.affiche('MESSAGE', 'Ajout de la colonne %s : %s' \ + % (occ['NOM_PARA'], repr(vectval))) #---------------------------------------------- # 6. Traitement de AJOUT @@ -155,13 +156,12 @@ def calc_table_ops(self, TABLE, ACTION, INFO, **args): dprod = tab.dict_CREA_TABLE() if INFO == 2: - echo_mess = [] - echo_mess.append( '@-'*30+'\n' ) - echo_mess.append( tab ) + echo_mess = [''] + echo_mess.append( repr(tab) ) from pprint import pformat echo_mess.append( pformat(dprod) ) - echo_mess.append( '@-'*30+'\n' ) - texte_final = ' '.join(echo_mess) + echo_mess.append('') + texte_final = os.linesep.join(echo_mess) aster.affiche('MESSAGE', texte_final) # surcharge par le titre fourni diff --git a/Aster/Cata/cataSTA9/Macro/recal.py b/Aster/Cata/cataSTA9/Macro/recal.py index 684df91c..c720d923 100644 --- a/Aster/Cata/cataSTA9/Macro/recal.py +++ b/Aster/Cata/cataSTA9/Macro/recal.py @@ -1,4 +1,4 @@ -#@ MODIF recal Macro DATE 29/08/2006 AUTEUR MCOURTOI M.COURTOIS +#@ MODIF recal Macro DATE 29/09/2010 AUTEUR MACOCCO K.MACOCCO # -*- coding: iso-8859-1 -*- # CONFIGURATION MANAGEMENT OF EDF VERSION # ====================================================================== -- 2.39.2