]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fix errors for crossplatform code WPdev Before_merging_with_V3_2_4
authorabd <abd@opencascade.com>
Mon, 27 Nov 2006 11:47:15 +0000 (11:47 +0000)
committerabd <abd@opencascade.com>
Mon, 27 Nov 2006 11:47:15 +0000 (11:47 +0000)
"not" instead "!="

src/VISU_SWIG/VISU_Example_02.py

index 0c52c6fa16c93f6bf5bc4f8131db3cd259955e02..cfe0ab77ce3a4c4e47fae3881b7cafde622d6c0f 100644 (file)
@@ -27,6 +27,7 @@ import visu_gui
 import SALOMEDS
 import VISU
 import os
+import sys
 
 medFile = os.getenv("DATA_DIR") + "/MedFiles/fra.med"
 
@@ -245,7 +246,7 @@ print "OK"
 
 file_new = str+'/VISU_005_new.hdf'
 
-if sys.platform != "win32":
+if not sys.platform == "win32":
   command = "mv " + file + " " + file_new
 else:
   command = "move /Y " + file + " " + file_new
@@ -380,7 +381,7 @@ if aRestoreRes != 1 : print "Error"
 else : print "OK"
 
 # Remove the study file
-if sys.platform != "win32":
+if not sys.platform == "win32":
   command = "rm -r " + file
 else:
   command = "del /F " + file