aboutsummaryrefslogtreecommitdiff
path: root/newspipe/lib/misc_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/lib/misc_utils.py')
-rwxr-xr-xnewspipe/lib/misc_utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/newspipe/lib/misc_utils.py b/newspipe/lib/misc_utils.py
index 243104a3..785b62db 100755
--- a/newspipe/lib/misc_utils.py
+++ b/newspipe/lib/misc_utils.py
@@ -46,7 +46,7 @@ from newspipe.lib.utils import clear_string
try:
from urlparse import urlparse, parse_qs, urlunparse
-except:
+except Exception:
from urllib.parse import urlparse, parse_qs, urlunparse, urljoin
@@ -119,14 +119,14 @@ def history(user_id, year=None, month=None):
"""
articles_counter = Counter()
articles = ArticleController(user_id).read()
- if None != year:
+ if year is not None:
articles = articles.filter(sqlalchemy.extract("year", "Article.date") == year)
- if None != month:
+ if month is not None:
articles = articles.filter(
sqlalchemy.extract("month", "Article.date") == month
)
for article in articles.all():
- if None != year:
+ if year is not None:
articles_counter[article.date.month] += 1
else:
articles_counter[article.date.year] += 1
bgstack15