I often put a break point using pdb

import pdb
pdb.set_trace()

This  causes the server (assuming you are using the django
development server) to drop to the pdb prompt when it hits the
set_trace().

Then I just print the form and look at the output.

Margie

On Apr 28, 4:59 am, Masklinn <maskl...@masklinn.net> wrote:
> On 28 Apr 2009, at 13:22 , Chris wrote:
>
>
>
> > What's the easiest way to get a quick synopsis of why form.is_valid()
> > returns false? I'm trying to unittest a form, and whenever is_valid()
> > fails, it takes me forever to find out why.
>
> the content of form.errors?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to