aboutsummaryrefslogtreecommitdiff
path: root/src/web/controllers/abstract.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-03-31 14:55:04 +0200
committerGitHub <noreply@github.com>2018-03-31 14:55:04 +0200
commit1873ed81705399658ce7628f1148327a5c595909 (patch)
tree7abea01f509a5efc136dfddbf260f60d80268186 /src/web/controllers/abstract.py
parentRenew certificate. (diff)
parentCorrect spelling mistakes. (diff)
downloadnewspipe-1873ed81705399658ce7628f1148327a5c595909.tar.gz
newspipe-1873ed81705399658ce7628f1148327a5c595909.tar.bz2
newspipe-1873ed81705399658ce7628f1148327a5c595909.zip
Merge pull request #37 from EdwardBetts/spelling
Correct spelling mistakes.
Diffstat (limited to 'src/web/controllers/abstract.py')
-rw-r--r--src/web/controllers/abstract.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/controllers/abstract.py b/src/web/controllers/abstract.py
index 47cc365f..764ff305 100644
--- a/src/web/controllers/abstract.py
+++ b/src/web/controllers/abstract.py
@@ -63,7 +63,7 @@ class AbstractController:
def _get(self, **filters):
""" Will add the current user id if that one is not none (in which case
the decision has been made in the code that the query shouldn't be user
- dependant) and the user is not an admin and the filters doesn't already
+ dependent) and the user is not an admin and the filters doesn't already
contains a filter for that user.
"""
if self._user_id_key is not None and self.user_id \
bgstack15