aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/api/v2/feed.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/api/v2/feed.py')
-rw-r--r--newspipe/web/views/api/v2/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/web/views/api/v2/feed.py b/newspipe/web/views/api/v2/feed.py
index 1081ed8c..eaccd24a 100644
--- a/newspipe/web/views/api/v2/feed.py
+++ b/newspipe/web/views/api/v2/feed.py
@@ -39,7 +39,7 @@ class FetchableFeedAPI(PyAggAbstractResource):
return result or None, 200 if result else 204
-api = Api(current_app, prefix=application.config['API_ROOT'])
+api = Api(current_app, prefix=application.config["API_ROOT"])
api.add_resource(FeedNewAPI, "/feed", endpoint="feed_new.json")
api.add_resource(FeedAPI, "/feed/<int:obj_id>", endpoint="feed.json")
bgstack15