diff -r 421fb447ecb2 -r deb13e88e037 web/views/csvexport.py --- 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)