From 9ac2c5ccaeda3be0189988b88fc9a26c4f5a4f06 Mon Sep 17 00:00:00 2001 From: jfa Date: Tue, 6 Nov 2007 10:44:13 +0000 Subject: [PATCH] Fix bug 17537: GEOM_TestOthers.TestOtherOperations() raises error. --- src/GEOM_SWIG/geompyDC.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GEOM_SWIG/geompyDC.py b/src/GEOM_SWIG/geompyDC.py index ea4bcb9d9..4114786cf 100644 --- a/src/GEOM_SWIG/geompyDC.py +++ b/src/GEOM_SWIG/geompyDC.py @@ -2375,7 +2375,7 @@ class geompyDC(GEOM._objref_GEOM_Gen): # Example: see GEOM_Spanner.py def CheckCompoundOfBlocks(self,theCompound): (IsValid, BCErrors) = self.BlocksOp.CheckCompoundOfBlocks(theCompound) - RaiseIfFailed("CheckCompoundOfBlocks", self.MeasuOp) + RaiseIfFailed("CheckCompoundOfBlocks", self.BlocksOp) if IsValid == 0: Descr = self.BlocksOp.PrintBCErrors(theCompound, BCErrors) print Descr