From 8407274e7b3575f269432f68d928067aad419bc0 Mon Sep 17 00:00:00 2001 From: jfa Date: Fri, 24 Aug 2007 12:44:39 +0000 Subject: [PATCH] Fix pb. of merge --- src/SMESH_SWIG/smeshDC.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SMESH_SWIG/smeshDC.py b/src/SMESH_SWIG/smeshDC.py index d9881a6a7..fce525a9e 100644 --- a/src/SMESH_SWIG/smeshDC.py +++ b/src/SMESH_SWIG/smeshDC.py @@ -457,7 +457,7 @@ class Mesh_Algorithm: def Create(self, mesh, geom, hypo, so="libStdMeshersEngine.so"): if geom is None: raise RuntimeError, "Attemp to create " + hypo + " algoritm on None shape" - algo = smesh.CreateHypothesis(hypo, so) + algo = self.mesh.smeshpyD.CreateHypothesis(hypo, so) self.Assign(algo, mesh, geom) return self.algo @@ -489,7 +489,7 @@ class Mesh_Algorithm: if hypo!=None: CreateNew = 0 pass if CreateNew: - hypo = smesh.CreateHypothesis(hyp, so) + hypo = self.mesh.smeshpyD.CreateHypothesis(hyp, so) key = "%s %s %s" % (self.__class__.__name__, hyp, args) Mesh_Algorithm.hypos[key] = hypo a = "" -- 2.39.2