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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/newspipe/web/views/user.py b/newspipe/web/views/user.py
index 6643cbca..c20777e7 100644
--- a/newspipe/web/views/user.py
+++ b/newspipe/web/views/user.py
@@ -101,7 +101,7 @@ def management():
Display the management page.
"""
if request.method == "POST":
- if None != request.files.get("opmlfile", None):
+ if None is not request.files.get("opmlfile", None):
# Import an OPML file
data = request.files.get("opmlfile", None)
if not misc_utils.allowed_file(data.filename):
@@ -115,7 +115,7 @@ def management():
flash(gettext("Downloading articles..."), "info")
except Exception:
flash(gettext("Impossible to import the new feeds."), "danger")
- elif None != request.files.get("jsonfile", None):
+ elif None is not request.files.get("jsonfile", None):
# Import an account
data = request.files.get("jsonfile", None)
if not misc_utils.allowed_file(data.filename):
bgstack15