Salome HOME
Copyright update 2022
[modules/smesh.git] / src / Tools / Verima / Gui / visualiseDatabase.py
index 1e952520c68d54ad728142cbf9b8ee23853862c0..dbbaa4f3c2b587a4f445401c01b0c51508a67ad8 100755 (executable)
@@ -1,4 +1,22 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
+# Copyright (C) 2013-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
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
 
 import sys,os
 rep=os.path.dirname(os.path.abspath(__file__))
@@ -6,19 +24,19 @@ installDir=os.path.join(rep,'..')
 sys.path.insert(0,installDir)
 
 from qtsalome import QApplication
-from Gui.maFenetreChoix_ui import MaFenetreChoix
+from Gui.maFenetreChoix import MaFenetreChoix
 from Base.dataBase import Base
 
 
 
 if __name__ == "__main__":
-      from optparse import OptionParser
-      p=OptionParser()
-      p.add_option('-d',dest='database',default="myMesh.db",help='nom de la database')
-      options, args = p.parse_args()
+      from argparse import ArgumentParser
+      p=ArgumentParser()
+      p.add_argument('-d',dest='database',default="myMesh.db",help='nom de la database')
+      args = p.parse_args()
 
       app = QApplication(sys.argv)
-      maBase=Base(options.database)
+      maBase=Base(args.database)
       maBase.initialise()
       window = MaFenetreChoix(maBase)
       window.show()