else:
nom = cas.nomProbleme
texte_a = "\n=== Exécution du cas n° {}, '{}'".format(NREF_PB[nom],nom)
- logging.critical(ligne+texte_a)
+ logging.critical((ligne+texte_a).encode('utf-8'))
try:
ok_maillage = cas.executeProbleme()
texte += ". Nombre de cas_tests NOOK : {}\n".format(nb_cas_nook)
else:
texte += "Les {} tests se sont bien passés.\n".format(nb_cas)
- print (texte+ligne)
- logging.critical(ligne+texte)
+ print ((texte+ligne).encode('utf-8'))
+ logging.critical((ligne+texte).encode('utf-8'))
return texte
text_2 = ""
ok_maillage = True
- with open(fichierStatMaillageFissure, "w") as fic_stat :
+ with open(fichierStatMaillageFissure, "w", encoding='utf-8') as fic_stat :
# Le nombre de quadrangles ou d'hexaèdres doit être rigoureusement identique
for key in ('Entity_Quad_Quadrangle', 'Entity_Quad_Hexa'):
with open(fichierNewRef, "w") as fic_info :
fic_info.write(text_2[:-4]+" \\")
- print (text)
+ print (text.encode('utf-8'))
return ok_maillage