>
> Try db.EventList.startDate.represent = lambda v: v.strftime('%d/%m/%Y') or
>> None
>
>
Note, that will still generate an error if v is None -- you have to first
check for v before applying the strftime method to it.Anthony
>
> Try db.EventList.startDate.represent = lambda v: v.strftime('%d/%m/%Y') or
>> None
>
>
Note, that will still generate an error if v is None -- you have to first
check for v before applying the strftime method to it.Anthony