Yes, looks like it should just be form.validate() -- .validate() returns True or False, but .process() returns the form itself (with a .accepted attribute set to True or False).
On Wednesday, October 19, 2011 7:16:24 PM UTC-4, apple wrote: > > There are two examples in the book that use "if > form.validate().accepted" > > However I get an error with this. Should it be just "if > form.validate()" ?