Salome HOME
Merge branch 'V9_9_BR'
[modules/smesh.git] / src / Tools / MacMesh / MacMesh / CentralUnrefine.py
index 5be20c0bd23a43727c6de72991cf3885735266a7..bb93cbf2986bc97057b3018e14f97695629bb4d4 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014-2016  EDF R&D
+# Copyright (C) 2014-2022  EDF R&D
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -24,8 +24,8 @@
 
 
 
-import sys, math, commands
-CWD = commands.getoutput('pwd')
+import sys, math, subprocess
+CWD = subprocess.getoutput('pwd')
 sys.path.append(CWD)
 
 from MacObject import *
@@ -178,7 +178,7 @@ def RemoveLastObj() :
     Config.Connections = Config.Connections[:-1]
 
 def GroupArray(indices, GroupNames) :
-    if type(indices) is int :
+    if isinstance(indices, int) :
         indices = [indices]
         GroupNames = [GroupNames]
     Output = [None,None,None,None]