web/views/csvexport.py
changeset 3720 5376aaadd16b
parent 3451 6b46d73823f5
parent 3689 deb13e88e037
child 4023 eae23c40627a
--- a/web/views/csvexport.py	Thu Oct 15 11:20:26 2009 +0200
+++ b/web/views/csvexport.py	Mon Oct 19 15:16:41 2009 +0200
@@ -45,7 +45,7 @@
             csvrow = []
             for colindex, val in enumerate(row):
                 etype = descr[rowindex][colindex]
-                if val is not None and not eschema(etype).is_final():
+                if val is not None and not eschema(etype).final:
                     # csvrow.append(val) # val is eid in that case
                     content = self._cw.view('textincontext', rset,
                                             row=rowindex, col=colindex)