]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
exception raised if given script is not found
authorCédric Aguerre <cedric.aguerre@edf.fr>
Fri, 14 Mar 2014 14:33:31 +0000 (15:33 +0100)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Fri, 14 Mar 2014 14:33:31 +0000 (15:33 +0100)
bin/salomeContextUtils.py.in

index 41e2c1138bb4ec87d8de2d236d8953f8372de035..6bd96b90d770a2dcf61d2262470826984c643993 100644 (file)
@@ -122,7 +122,9 @@ def getScriptsAndArgs(args=[], searchPathList=None):
       if not os.path.isfile(elt) and not os.path.isfile(elt+".py"):
         eltInSearchPath = __getScriptPath(elt, searchPathList)
         if eltInSearchPath is None or (not os.path.isfile(eltInSearchPath) and not os.path.isfile(eltInSearchPath+".py")):
-          raise SalomeContextException("Script not found: %s"%elt)
+          if elt[-3:] == ".py":
+            raise SalomeContextException("Script not found: %s"%elt)
+          continue
         elt = eltInSearchPath
 
       if elt[-4:] != ".hdf":