X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH_I%2FSMESH_Gen_i.cxx;h=944251e83f1d0e31bdf2af7efd0a35fd98dfbce9;hp=6d8627efa7b251289d80a96ed6085eacddf5b345;hb=36c94a9794e82292a908a0883d61c763b3b8c3c3;hpb=ef8aea4ac00f0f0f3fa7026a58c9dfd44d3dd1e5 diff --git a/src/SMESH_I/SMESH_Gen_i.cxx b/src/SMESH_I/SMESH_Gen_i.cxx index 6d8627efa..944251e83 100644 --- a/src/SMESH_I/SMESH_Gen_i.cxx +++ b/src/SMESH_I/SMESH_Gen_i.cxx @@ -2870,16 +2870,16 @@ SMESH::SMESH_Mesh_ptr SMESH_Gen_i::CreateDualMesh(SMESH::SMESH_IDSource_ptr mesh if (PyErr_Occurred()) { // Restrieving python error - MESSAGE("Catching error") + MESSAGE("Catching error"); PyObject *errtype, *errvalue, *traceback; PyErr_Fetch(&errtype, &errvalue, &traceback); if(errvalue != NULL) { - MESSAGE("Error has a value") + MESSAGE("Error has a value"); PyObject *s = PyObject_Str(errvalue); Py_ssize_t size; std::string msg = PyUnicode_AsUTF8AndSize(s, &size); msg = "Issue with the execution of create_dual_mesh:\n"+msg; - MESSAGE("throwing exception") + MESSAGE("throwing exception"); // We need to deactivate the GIL before throwing the exception PyGILState_Release(gstate); THROW_SALOME_CORBA_EXCEPTION(msg.c_str(), SALOME::INTERNAL_ERROR );