[web2py] Re: TypeError: %d format: a number is required, not dict

2013-09-11 Thread Annet
Massimo, Thanks for figuring out what the problem was, it didn't cross my mind that the error messages were the problem. Kind regards, Annet -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/we

[web2py] Re: TypeError: %d format: a number is required, not dict

2013-09-11 Thread Massimo Di Pierro
The problem is that IS_TIME(...error_message='Formaat komt niet overeen met %d-%m-%Y')...) should be IS_TIME(...error_message='Formaat komt niet overeen met %%d-%%m-%%Y')...) or IS_TIME(...error_message='Formaat komt niet overeen met DD-MM-')...) If you want a '%' in an error message it

[web2py] Re: TypeError: %d format: a number is required, not dict

2013-09-06 Thread Annet
I downloaded web2py from: https://github.com/web2py/web2py/ And tested my application, I still get the same error. Kind regards, Annet. -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving em

[web2py] Re: TypeError: %d format: a number is required, not dict

2013-09-05 Thread Massimo Di Pierro
Please try trunk or nightly build. I believe this is fixed. On Thursday, 5 September 2013 00:42:04 UTC-5, Annet wrote: > > > > Version 2.5.1-stable+timestamp.2013.06.06.15.39.19 > > > Kind regards, > > Annet > -- --- You received this message because you are subscribed to the Google Groups "w

[web2py] Re: TypeError: %d format: a number is required, not dict

2013-09-04 Thread Annet
Version 2.5.1-stable+timestamp.2013.06.06.15.39.19 Kind regards, Annet -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups

[web2py] Re: TypeError: %d format: a number is required, not dict

2013-09-04 Thread Massimo Di Pierro
which version? On Wednesday, 4 September 2013 13:49:29 UTC-5, Annet wrote: > > In a table definition I have these two fields: > > Field('startDate', label='Start datum * ', **isdate), > Field('endDate', label='Eind datum', **isemptyorisdate), > > Since I have more of these fields I defined the fol