aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v3/common.py
diff options
context:
space:
mode:
authorEdward Betts <edward@4angle.com>2018-03-31 13:39:26 +0100
committerEdward Betts <edward@4angle.com>2018-03-31 13:39:26 +0100
commit877eaa155fef72102a5bd10302ad958f487260f3 (patch)
tree7abea01f509a5efc136dfddbf260f60d80268186 /src/web/views/api/v3/common.py
parentRenew certificate. (diff)
downloadnewspipe-877eaa155fef72102a5bd10302ad958f487260f3.tar.gz
newspipe-877eaa155fef72102a5bd10302ad958f487260f3.tar.bz2
newspipe-877eaa155fef72102a5bd10302ad958f487260f3.zip
Correct spelling mistakes.
Diffstat (limited to 'src/web/views/api/v3/common.py')
-rw-r--r--src/web/views/api/v3/common.py2
1 files changed, 1 insertions, 1 deletions
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)
bgstack15