]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
[EDF17470] : huge bug correction. Sorry for this inconvenience
authorAnthony Geay <anthony.geay@edf.fr>
Wed, 18 Jul 2018 08:06:02 +0000 (10:06 +0200)
committerAnthony Geay <anthony.geay@edf.fr>
Wed, 18 Jul 2018 08:06:02 +0000 (10:06 +0200)
src/SALOMESDS/SALOMESDS_DataScopeServer.cxx

index 2010d89ef5aa0c12948fd3ac13b8f313758c4da1..c0a06f2a1eb5641e4dfb412d9f7c4771ee804f53 100644 (file)
@@ -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 !";