aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/home.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/home.py')
-rw-r--r--newspipe/web/views/home.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/web/views/home.py b/newspipe/web/views/home.py
index 66ce87ea..0fe09b17 100644
--- a/newspipe/web/views/home.py
+++ b/newspipe/web/views/home.py
@@ -181,7 +181,7 @@ def fetch(feed_id=None):
Triggers the download of news.
News are downloaded in a separated process.
"""
- if application.config['CRAWLING_METHOD'] == "default" and current_user.is_admin:
+ if application.config["CRAWLING_METHOD"] == "default" and current_user.is_admin:
misc_utils.fetch(current_user.id, feed_id)
flash(gettext("Downloading articles..."), "info")
else:
bgstack15