From b999f8d39f851b789fa4b69250eddc1b6ab21e5a Mon Sep 17 00:00:00 2001 From: Kcchouette Date: Mon, 14 May 2018 11:36:26 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20availiable=20=E2=86=92=20available=20(#49?= =?UTF-8?q?1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nyaa/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nyaa/forms.py b/nyaa/forms.py index b80a2d4..99b3883 100644 --- a/nyaa/forms.py +++ b/nyaa/forms.py @@ -122,7 +122,7 @@ class RegisterForm(FlaskForm): DataRequired(), Length(min=3, max=32), stop_on_validation_error(_username_validator), - Unique(User, User.username, 'Username not availiable') + Unique(User, User.username, 'Username not available') ]) email = StringField('Email address', [