web/views/csvexport.py
branchstable
changeset 3689 deb13e88e037
parent 3165 0a50ebe53db7
child 3720 5376aaadd16b
child 4212 ab6573088b4a
--- a/web/views/csvexport.py	Thu Oct 15 18:43:04 2009 +0200
+++ b/web/views/csvexport.py	Thu Oct 15 20:29:21 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.view('textincontext', rset,
                                         row=rowindex, col=colindex)