X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConnectorPlugin%2FConnectorPlugin.py;h=f16adee55871b3ad29316e9a96c67ca254acbae3;hb=ffdab8e26d4057116efdbc2ba31c6627fcf300bd;hp=345e4f8c0d03a3dc915ef605f8974692b9990f8a;hpb=85ca51b94bad5853150622699368be3137acc00e;p=modules%2Fshaper.git diff --git a/src/ConnectorPlugin/ConnectorPlugin.py b/src/ConnectorPlugin/ConnectorPlugin.py index 345e4f8c0..f16adee55 100644 --- a/src/ConnectorPlugin/ConnectorPlugin.py +++ b/src/ConnectorPlugin/ConnectorPlugin.py @@ -1,6 +1,24 @@ +# Copyright (C) 2014-2019 CEA/DEN, 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, 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# + ## @package Plugins # Python plugin for exporting entities into Salome's GEOM module -# Copyright (C) 2014-20xx CEA/DEN, EDF R&D import ModelAPI @@ -20,7 +38,7 @@ class ConnectorPlugin(ModelAPI.ModelAPI_Plugin): if theFeatureID == ExportFeature.ID(): return ExportFeature().__disown__() else: - print "ConnectorPlugin: No such feature %s" % theFeatureID + print("ConnectorPlugin: No such feature %s" % theFeatureID) ## The plugin created on module importing (from c++) plugin = ConnectorPlugin()