Re: form object has no attribute 'cleaned_data'

2010-03-31 Thread Nick Arnett
On Wed, Mar 31, 2010 at 9:09 PM, jeff wrote: > >page_title='Add a Pair' >if request.method == 'POST': >form=SymForm(request.POST) >if form.is_valid: is_valid is a call - you want this: if form.is_valid(): Nick -- You received this message beca

form object has no attribute 'cleaned_data'

2010-03-31 Thread jeff
so i've searched high and low on this error. lots of answers about having used old versions of django. i did this: j...@earth:/home/samba/raymour/v1/rrsite$ django-admin.py --version 1.1.1 then a lot of stuff about python path having been done with an easy installer and having an 'egg' in it. doe