]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
Ajout à la demande de Pascale : resolution d un bug pour MT V9_5_0b
authorNATHALIE GORE <ng13417n@dsp0940623.atlas.edf.fr>
Thu, 14 May 2020 06:08:48 +0000 (08:08 +0200)
committerNATHALIE GORE <ng13417n@dsp0940623.atlas.edf.fr>
Thu, 14 May 2020 06:08:48 +0000 (08:08 +0200)
InterfaceQT4/editorSsIhm.py [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index b60a39b..69bd9d6
@@ -480,11 +480,14 @@ class JDCEditorSsIhm :
     #---------------------------#
     def getChecksum(self,texte):
     #---------------------------#
-        newtexte=texte.replace('"','\\"')
-        commande='echo "'+newtexte+'"|md5sum'
-        a=os.popen(commande)
-        checksum=a.read()
-        a.close()
+        try :
+           newtexte=texte.replace('"','\\"')
+           commande='echo "'+newtexte+'"|md5sum'
+           a=os.popen(commande)
+           checksum=a.read()
+           a.close()
+        except :
+           checksum='Fichier trop long \n'
         ligne="#CHECKSUM:"+checksum[0:-1]+":FIN CHECKSUM"
         return ligne