From d9a6e9d9f3e844703bbeb5cd6806bed6c2e9b615 Mon Sep 17 00:00:00 2001 From: eap Date: Wed, 10 May 2006 12:54:55 +0000 Subject: [PATCH] fix bug 12361. In SetName(): there may be no study --- src/SMESH_SWIG/smesh.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/SMESH_SWIG/smesh.py b/src/SMESH_SWIG/smesh.py index bf7fed011..6b95891c7 100644 --- a/src/SMESH_SWIG/smesh.py +++ b/src/SMESH_SWIG/smesh.py @@ -60,8 +60,9 @@ def GetName(obj): def SetName(obj, name): ior = salome.orb.object_to_string(obj) sobj = salome.myStudy.FindObjectIOR(ior) - attr = sobj.FindAttribute("AttributeName")[1] - attr.SetValue(name) + if not sobj is None: + attr = sobj.FindAttribute("AttributeName")[1] + attr.SetValue(name) # Algorithms and hypothesis # ========================= -- 2.30.2