aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-10-01 08:11:36 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-10-01 08:11:36 +0200
commit16598118f45a5efe3c58c2e3e30bff733a65d9f9 (patch)
tree3774274a20432a087a460531c1dfb2422fbe9612 /pyaggr3g470r/forms.py
parentMinor improvements to the home page. (diff)
parentTranslations have been updated. (diff)
downloadnewspipe-16598118f45a5efe3c58c2e3e30bff733a65d9f9.tar.gz
newspipe-16598118f45a5efe3c58c2e3e30bff733a65d9f9.tar.bz2
newspipe-16598118f45a5efe3c58c2e3e30bff733a65d9f9.zip
Merge branch 'master' of bitbucket.org:cedricbonhomme/pyaggr3g470r
Diffstat (limited to 'pyaggr3g470r/forms.py')
-rw-r--r--pyaggr3g470r/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/forms.py b/pyaggr3g470r/forms.py
index fdd1f24d..f34c3f72 100644
--- a/pyaggr3g470r/forms.py
+++ b/pyaggr3g470r/forms.py
@@ -118,7 +118,7 @@ class InformationMessageForm(Form):
submit = SubmitField(lazy_gettext("Send"))
class RecoverPasswordForm(Form):
- email = EmailField("Email", [validators.Length(min=6, max=35), validators.Required(lazy_gettext("Please enter your email address."))])
+ email = EmailField(lazy_gettext("Email"), [validators.Length(min=6, max=35), validators.Required(lazy_gettext("Please enter your email address."))])
submit = SubmitField(lazy_gettext("Recover"))
def __init__(self, *args, **kwargs):
bgstack15