aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/user.py')
-rw-r--r--newspipe/web/views/user.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/web/views/user.py b/newspipe/web/views/user.py
index 39eefb4c..78002660 100644
--- a/newspipe/web/views/user.py
+++ b/newspipe/web/views/user.py
@@ -115,7 +115,7 @@ def management():
else:
try:
nb = import_opml(current_user.nickname, data.read())
- if application.config['CRAWLING_METHOD'] == "classic":
+ if application.config["CRAWLING_METHOD"] == "classic":
misc_utils.fetch(current_user.id, None)
flash(str(nb) + " " + gettext("feeds imported."), "success")
flash(gettext("Downloading articles..."), "info")
bgstack15