[cig-commits] r6869 - short/3D/PyLith/trunk/pylith/topology

brad at geodynamics.org brad at geodynamics.org
Sat May 12 14:10:37 PDT 2007


Author: brad
Date: 2007-05-12 14:10:36 -0700 (Sat, 12 May 2007)
New Revision: 6869

Modified:
   short/3D/PyLith/trunk/pylith/topology/MeshGenSimple.py
Log:
Fixed minor bug in create().

Modified: short/3D/PyLith/trunk/pylith/topology/MeshGenSimple.py
===================================================================
--- short/3D/PyLith/trunk/pylith/topology/MeshGenSimple.py	2007-05-12 21:05:20 UTC (rev 6868)
+++ short/3D/PyLith/trunk/pylith/topology/MeshGenSimple.py	2007-05-12 21:10:36 UTC (rev 6869)
@@ -44,7 +44,7 @@
     Generate a Mesh from a boundary
     """
     mesh = Mesh()
-    mesh.cppHandle = self.cppHandle.generate(self.boundary)
+    mesh.cppHandle = self.cppHandle.generate(self.boundary.cppHandle)
     return mesh
 
 



More information about the cig-commits mailing list