aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r')
-rwxr-xr-xpyaggr3g470r/utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py
index 1ad2896a..b1c9ff50 100755
--- a/pyaggr3g470r/utils.py
+++ b/pyaggr3g470r/utils.py
@@ -95,7 +95,6 @@ def history(user_id, year=None, month=None):
articles = articles.filter(sqlalchemy.extract('year', Article.date) == year)
if None != month:
articles = articles.filter(sqlalchemy.extract('month', Article.date) == month)
- print(articles.count())
for article in articles.all():
if None != year:
articles_counter[article.date.month] += 1
bgstack15