aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/feed.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-28 10:25:28 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-28 10:25:28 +0100
commit37298690251faed707496f2db7fa7edb00ebedce (patch)
treee90230c35bd9c9f5a71931ce06c16bed1eadb72c /src/web/views/feed.py
parentspecify npm version (diff)
downloadnewspipe-37298690251faed707496f2db7fa7edb00ebedce.tar.gz
newspipe-37298690251faed707496f2db7fa7edb00ebedce.tar.bz2
newspipe-37298690251faed707496f2db7fa7edb00ebedce.zip
Improved view for the list of public feeds.
Diffstat (limited to 'src/web/views/feed.py')
-rw-r--r--src/web/views/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/feed.py b/src/web/views/feed.py
index 9fa4b089..297b5521 100644
--- a/src/web/views/feed.py
+++ b/src/web/views/feed.py
@@ -26,7 +26,7 @@ feed_bp = Blueprint('feed', __name__, url_prefix='/feed')
@login_required
@etag_match
def feeds():
- "Lists the subscribed feeds in a table."
+ "Lists the subscribed feeds in a table."
art_contr = ArticleController(current_user.id)
return render_template('feeds.html',
feeds=FeedController(current_user.id).read().order_by('title'),
bgstack15