mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 01:58:35 +05:00
minor correction:
to avoid the critical message of PluginsManager when SMESH_PYPLUGIN_DIR are not declared
This commit is contained in:
parent
49eb5ff195
commit
e60bcaf4a9
@ -122,10 +122,12 @@ import sys
|
|||||||
import importlib
|
import importlib
|
||||||
import importlib.util
|
import importlib.util
|
||||||
|
|
||||||
plugin_dirs = os.getenv("SMESH_PYPLUGIN_DIR").split(":")
|
smesh_pyplugin_dir = os.getenv("SMESH_PYPLUGIN_DIR")
|
||||||
# reverse plugin_dirs list to call smesh python plugin in good order
|
if smesh_pyplugin_dir:
|
||||||
plugin_dirs.reverse()
|
plugin_dirs = smesh_pyplugin_dir.split(":")
|
||||||
for plg_dir in plugin_dirs:
|
# reverse plugin_dirs list to call smesh python plugin in good order
|
||||||
|
plugin_dirs.reverse()
|
||||||
|
for plg_dir in plugin_dirs:
|
||||||
if os.path.exists(plg_dir):
|
if os.path.exists(plg_dir):
|
||||||
sys.path.insert(0, plg_dir)
|
sys.path.insert(0, plg_dir)
|
||||||
#for filename in sorted(
|
#for filename in sorted(
|
||||||
|
Loading…
Reference in New Issue
Block a user