aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index b7a92519..49f879ec 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -114,7 +114,7 @@ class SigninForm(RedirectForm):
validated = False
else:
if not user.is_active:
- self.email_or_nickmane.errors.append('User is desactivated')
+ self.email_or_nickmane.errors.append('Account not active')
validated = False
if not ucontr.check_password(user, self.password.data):
self.password.errors.append('Wrong password')
bgstack15