[cig-commits] r9088 - short/3D/PyLith/trunk/pylith/bc

willic3 at geodynamics.org willic3 at geodynamics.org
Thu Jan 17 13:46:35 PST 2008


Author: willic3
Date: 2008-01-17 13:46:35 -0800 (Thu, 17 Jan 2008)
New Revision: 9088

Modified:
   short/3D/PyLith/trunk/pylith/bc/BoundaryCondition.py
Log:
Mapped upDir list to floats so that it gets handled correctly by the bindings.


Modified: short/3D/PyLith/trunk/pylith/bc/BoundaryCondition.py
===================================================================
--- short/3D/PyLith/trunk/pylith/bc/BoundaryCondition.py	2008-01-17 21:37:14 UTC (rev 9087)
+++ short/3D/PyLith/trunk/pylith/bc/BoundaryCondition.py	2008-01-17 21:46:35 UTC (rev 9088)
@@ -141,7 +141,7 @@
     Component._configure(self)
     self.id = self.inventory.id
     self.label = self.inventory.label
-    self.upDir = self.inventory.upDir
+    self.upDir = mat(float, self.inventory.upDir)
     self.db = self.inventory.db
     return
 



More information about the cig-commits mailing list