Salome HOME
Updated copyright comment
[modules/med.git] / src / MEDCalc / tui / medprocessing.py
index 3501e60842a308f8794ee2e219a84eec3477a752..5417a26fe281602acba864de8f21cd09eeda625e 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2011-2016  CEA/DEN, EDF R&D
+# Copyright (C) 2011-2024  CEA, EDF
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -36,7 +36,7 @@ def ChangeUnderlyingMesh(fieldId, meshId):
     notifyGui_changeUnderlyingMesh(duplicate.id)
     return duplicate.id
   except SALOME.SALOME_Exception as e:
-    notifyGui_error("An error occured while changing underlying mesh:\n" + e.details.text)
+    notifyGui_error("An error occurred while changing underlying mesh:\n" + e.details.text)
     raise Exception(e.details.text)
 #
 
@@ -57,6 +57,6 @@ def InterpolateField(fieldId,
     notifyGui_interpolateField(fieldHandler.id)
     return fieldHandler.id
   except SALOME.SALOME_Exception as e:
-    notifyGui_error("An error occured while interpolating field:\n" + e.details.text)
+    notifyGui_error("An error occurred while interpolating field:\n" + e.details.text)
     raise Exception(e.details.text)
 #