aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/category.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/views/category.py')
-rw-r--r--src/web/views/category.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/category.py b/src/web/views/category.py
index 2bdcf9cc..138561dd 100644
--- a/src/web/views/category.py
+++ b/src/web/views/category.py
@@ -16,7 +16,7 @@ category_bp = Blueprint('category', __name__, url_prefix='/category')
@login_required
@etag_match
def list_():
- "Lists the subscribed feeds in a table."
+ "Lists the subscribed feeds in a table."
art_contr = ArticleController(current_user.id)
return render_template('categories.html',
categories=list(CategoryController(current_user.id).read().order_by('name')),
bgstack15