aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/api/v2/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/v2/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/v2/common.py')
-rw-r--r--src/web/views/api/v2/common.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/views/api/v2/common.py b/src/web/views/api/v2/common.py
index 04b19d78..8a53d7e6 100644
--- a/src/web/views/api/v2/common.py
+++ b/src/web/views/api/v2/common.py
@@ -45,7 +45,7 @@ def authenticate(func):
if not ucontr.check_password(user, request.authorization.password):
raise Forbidden("Couldn't authenticate your user")
if not user.is_active:
- raise Forbidden("User is desactivated")
+ raise Forbidden("User is deactivated")
login_user_bundle(user)
if current_user.is_authenticated:
return func(*args, **kwargs)
@@ -116,7 +116,7 @@ class PyAggResourceNew(PyAggAbstractResource):
class PyAggResourceExisting(PyAggAbstractResource):
def get(self, obj_id=None):
- """Retreive a single object"""
+ """Retrieve a single object"""
return self.controller.get(id=obj_id)
def put(self, obj_id=None):
@@ -216,7 +216,7 @@ class PyAggResourceMulti(PyAggAbstractResource):
except Exception as error:
status = 206
results.append(error)
- # if no operation succeded, it's not partial anymore, returning err 500
+ # if no operation succeeded, it's not partial anymore, returning err 500
if status == 206 and results.count('ok') == 0:
status = 500
return results, status
bgstack15