X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2FYamsPlug%2Fyamsplug_plugin.py;h=94a4cd9fe2b5d0d8ef0a31e328b0f7d8b58a989c;hb=cf38d693404669f727c1f37ef95eccf830634f05;hp=4e04a9833e38c0b636316e007295bf992747e8f8;hpb=1067ffa6e7e5c394e3a1b17219d8b355a57607cd;p=modules%2Fsmesh.git diff --git a/src/Tools/YamsPlug/yamsplug_plugin.py b/src/Tools/YamsPlug/yamsplug_plugin.py index 4e04a9833..94a4cd9fe 100644 --- a/src/Tools/YamsPlug/yamsplug_plugin.py +++ b/src/Tools/YamsPlug/yamsplug_plugin.py @@ -1,9 +1,10 @@ -# Copyright (C) 2006-2012 EDF R&D +# -*- coding: utf-8 -*- +# Copyright (C) 2006-2014 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. +# 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 @@ -34,11 +35,12 @@ def YamsLct(context): from PyQt4.QtGui import QFileDialog from PyQt4.QtGui import QMessageBox + #prior test to avoid unnecessary user GUI work with ending crash try : os.environ['DISTENE_LICENCE_FILE_FOR_YAMS'] except: - QMessageBox.warning(None,"Products","Distene's products are not installed") + QMessageBox.warning(None,"Products","Distene's product Yams is not installed.\nrequired environment variable:\nDISTENE_LICENCE_FILE_FOR_YAMS='/.../dlim8.var.sh'") return import monYamsPlugDialog - window=monYamsPlugDialog.getDialog() + window=monYamsPlugDialog.getDialog() window.show()