From: Anthony Geay Date: Wed, 18 Jul 2018 08:06:02 +0000 (+0200) Subject: [EDF17470] : huge bug correction. Sorry for this inconvenience X-Git-Tag: SHAPER_V9_1_0RC1~7^2~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4582c0113e00d57706bd115415cbaa1550fb60be;p=modules%2Fkernel.git [EDF17470] : huge bug correction. Sorry for this inconvenience --- diff --git a/src/SALOMESDS/SALOMESDS_DataScopeServer.cxx b/src/SALOMESDS/SALOMESDS_DataScopeServer.cxx index 2010d89ef..c0a06f2a1 100644 --- a/src/SALOMESDS/SALOMESDS_DataScopeServer.cxx +++ b/src/SALOMESDS/SALOMESDS_DataScopeServer.cxx @@ -744,7 +744,7 @@ void DataScopeServerTransaction::notifyKey(const std::string& varName, PyObject continue; } PyObject *waitKey((*it)->getKeyPyObj()); - PyObject *meth(PyObject_GetAttrString(keyObj,"__eq__")); + PyObject *meth(PyObject_GetAttrString(waitKey,"__eq__")); if(!meth) { std::ostringstream oss; oss << "DataScopeServerTransaction::pingKey : for object id #" << ii << " no __eq__ in pyobj !";