aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-16 07:25:01 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-16 07:25:01 +0100
commitaaa6013c0e8a477378fb5de9f3362ae17d933788 (patch)
tree130911dd11137dcf7941955cc7658c69f008509f
parentRemoved debug print. (diff)
downloadnewspipe-aaa6013c0e8a477378fb5de9f3362ae17d933788.tar.gz
newspipe-aaa6013c0e8a477378fb5de9f3362ae17d933788.tar.bz2
newspipe-aaa6013c0e8a477378fb5de9f3362ae17d933788.zip
Removed blank line.
-rwxr-xr-xpyaggr3g470r/utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py
index b1c9ff50..e88f5261 100755
--- a/pyaggr3g470r/utils.py
+++ b/pyaggr3g470r/utils.py
@@ -100,7 +100,6 @@ def history(user_id, year=None, month=None):
articles_counter[article.date.month] += 1
else:
articles_counter[article.date.year] += 1
-
return articles_counter, articles
def import_opml(email, opml_content):
bgstack15