[cig-commits] r11504 - short/3D/PyLith/trunk/pylith/meshio

brad at geodynamics.org brad at geodynamics.org
Sat Mar 22 10:55:26 PDT 2008


Author: brad
Date: 2008-03-22 10:55:26 -0700 (Sat, 22 Mar 2008)
New Revision: 11504

Modified:
   short/3D/PyLith/trunk/pylith/meshio/OutputManager.py
Log:
Fixed typo in determining whether to write output (info->data).

Modified: short/3D/PyLith/trunk/pylith/meshio/OutputManager.py
===================================================================
--- short/3D/PyLith/trunk/pylith/meshio/OutputManager.py	2008-03-22 17:53:36 UTC (rev 11503)
+++ short/3D/PyLith/trunk/pylith/meshio/OutputManager.py	2008-03-22 17:55:26 UTC (rev 11504)
@@ -238,8 +238,8 @@
     self._logger.eventBegin(logEvent)    
 
     if self._checkWrite(t) and \
-           ( len(self.vertexInfoFields) > 0 or \
-             len(self.cellInfoFields) ) > 0:
+           ( len(self.vertexDataFields) > 0 or \
+             len(self.cellDataFields) ) > 0:
 
       (mesh, label, labelId) = self.dataProvider.getDataMesh()
       self.cppHandle.openTimeStep(t.value,



More information about the cig-commits mailing list