Salome HOME
Merge branch 'V9_9_BR'
[modules/smesh.git] / src / Tools / MGCleanerPlug / MGCleanerplug_plugin.py
index d17bd64abf6b139fac8c72299f6bf9cc51caaad4..c9e0a22255643dafd0c5258adc1ed97326d54c61 100644 (file)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2013-2015  EDF R&D
+# 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
@@ -22,9 +22,8 @@
 # if not, copy this file as ${HOME}/Plugins/smesh_plugins.py or ${APPLI}/Plugins/smesh_plugins.py
 
 def MGCleanerLct(context):
-  # get context study, studyId, salomeGui
+  # get context study, salomeGui
   study = context.study
-  studyId = context.studyId
   sg = context.sg
   
   import os
@@ -32,13 +31,7 @@ def MGCleanerLct(context):
   import tempfile
   from qtsalome import QFileDialog, QMessageBox
   
-  #prior test to avoid unnecessary user GUI work with ending crash
-  try :
-      os.environ['DISTENE_LICENCE_FILE_FOR_MGCLEANER']
-  except:
-      QMessageBox.warning(None,"Products","Distene's product MeshGem Cleaner is not installed.\nrequired environment variable:\nDISTENE_LICENCE_FILE_FOR_MGCLEANER='/.../dlim8.var.sh'")
-      return
   import MGCleanerMonPlugDialog
-  window=MGCleanerMonPlugDialog.getDialog()
+  window = MGCleanerMonPlugDialog.getDialog()
   window.show()