Browse Source

Merge pull request #148 from justanr/master

Correct typo in password field
Alec Nikolas Reiter 9 years ago
parent
commit
9b6cf4f4a4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      flaskbb/auth/forms.py

+ 1 - 1
flaskbb/auth/forms.py

@@ -83,7 +83,7 @@ class RegisterRecaptchaForm(RegisterForm):
 
 
 class ReauthForm(Form):
-    password = PasswordField(_('Password'), valdidators=[
+    password = PasswordField(_('Password'), validators=[
         DataRequired(message=_("A Password is required."))])
 
     submit = SubmitField(_("Refresh Login"))