Re: Getting the Error 'TypeError, float argument required'

2007-10-05 Thread Thomas Guettler
Am Freitag, 5. Oktober 2007 09:21 schrieb Greg: > Hello, > I have the following field in my class > > amount = models.DecimalField("Order Amount", max_digits=6, > decimal_places=2) > > Whenever, I add a new record to this class I get the following error: > > TypeError at /admin/plush/orders/ >

Getting the Error 'TypeError, float argument required'

2007-10-05 Thread Greg
Hello, I have the following field in my class amount = models.DecimalField("Order Amount", max_digits=6, decimal_places=2) Whenever, I add a new record to this class I get the following error: TypeError at /admin/plush/orders/ float argument required Any suggestions? Thanks