aboutsummaryrefslogtreecommitdiff
path: root/src/web/views
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-26 23:23:00 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-26 23:23:00 +0200
commitecc89f710972f1901d139446ce92b0543849114f (patch)
tree04858f9382e93e302d428f7b63a26893f6351d1e /src/web/views
parentDisplay all shared bookmarks for a guest. (diff)
downloadnewspipe-ecc89f710972f1901d139446ce92b0543849114f.tar.gz
newspipe-ecc89f710972f1901d139446ce92b0543849114f.tar.bz2
newspipe-ecc89f710972f1901d139446ce92b0543849114f.zip
updated layout
Diffstat (limited to 'src/web/views')
-rw-r--r--src/web/views/bookmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/bookmark.py b/src/web/views/bookmark.py
index 04e79c09..9263b49f 100644
--- a/src/web/views/bookmark.py
+++ b/src/web/views/bookmark.py
@@ -49,7 +49,7 @@ bookmark_bp = Blueprint('bookmark', __name__, url_prefix='/bookmark')
@bookmarks_bp.route('/', defaults={'per_page': '50'}, methods=['GET'])
-def list(per_page):
+def list_(per_page):
"Lists the bookmarks."
head_titles = [gettext("Bookmarks")]
bgstack15