aboutsummaryrefslogtreecommitdiff
path: root/source/pyAggr3g470r.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-12-01 14:10:15 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-12-01 14:10:15 +0100
commit314f852d95909fe5e2c2f2368a2e15b86c04ed7d (patch)
tree88cadcac3b722cacc6a1cd8a5cf7f2ffbd1860f0 /source/pyAggr3g470r.py
parentReorganisation (diff)
downloadnewspipe-314f852d95909fe5e2c2f2368a2e15b86c04ed7d.tar.gz
newspipe-314f852d95909fe5e2c2f2368a2e15b86c04ed7d.tar.bz2
newspipe-314f852d95909fe5e2c2f2368a2e15b86c04ed7d.zip
Fixed typo name of a function).
Diffstat (limited to 'source/pyAggr3g470r.py')
-rwxr-xr-xsource/pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 184c2e45..72320dc4 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -173,7 +173,7 @@ class pyAggr3g470r(object):
"""
More advanced statistics.
"""
- articles = self.mongo.get_articless()
+ articles = self.mongo.get_articles()
top_words = utils.top_words(articles, n=50, size=int(word_size))
tag_cloud = utils.tag_cloud(top_words)
tmpl = lookup.get_template("statistics.html")
bgstack15