From 42b4a2d0003943c5643beb716addf8841b96589b Mon Sep 17 00:00:00 2001 From: geoffjukes Date: Tue, 27 Aug 2013 12:58:46 -0700 Subject: [PATCH] Changed 'Required' (undefined) to 'DataRequired' per the other fields. --- Large-app-how-to.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Large-app-how-to.md b/Large-app-how-to.md index 13e4de8..a78ad1e 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -206,7 +206,7 @@ Now that we've done our object model, time to build the form that goes with it. DataRequired(), EqualTo('password', message='Passwords must match') ]) - accept_tos = BooleanField('I accept the TOS', [Required()]) + accept_tos = BooleanField('I accept the TOS', [DataRequired()]) recaptcha = RecaptchaField() ```