From 877eaa155fef72102a5bd10302ad958f487260f3 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 31 Mar 2018 13:39:26 +0100 Subject: Correct spelling mistakes. --- src/web/views/api/v3/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/views/api/v3/common.py') diff --git a/src/web/views/api/v3/common.py b/src/web/views/api/v3/common.py index eb354482..b2a5ea3f 100644 --- a/src/web/views/api/v3/common.py +++ b/src/web/views/api/v3/common.py @@ -47,7 +47,7 @@ def auth_func(*args, **kw): raise ProcessingException("Couldn't authenticate your user", code=401) if not user.is_active: - raise ProcessingException("User is desactivated", code=401) + raise ProcessingException("User is deactivated", code=401) login_user_bundle(user) if not current_user.is_authenticated: raise ProcessingException(description='Not authenticated!', code=401) -- cgit