Salome HOME
Copyright update 2022
[plugins/hybridplugin.git] / doc / salome / examples / testme.py
old mode 100755 (executable)
new mode 100644 (file)
index 6a502d0..f7f18d9
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import unittest, sys, os
 
 class SalomeSession(object):
     def __init__(self, script):
-        import runSalome
-        run_script = "runSalome.py"
+        import runSalomeOld as runSalome
+        run_script = "runSalomeOld.py"
         if sys.platform == 'win32':
             module_dir = os.getenv("KERNEL_ROOT_DIR")
             if module_dir: run_script = os.path.join(module_dir, "bin", "salome", run_script)