diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2012-12-01 14:10:15 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2012-12-01 14:10:15 +0100 |
commit | 314f852d95909fe5e2c2f2368a2e15b86c04ed7d (patch) | |
tree | 88cadcac3b722cacc6a1cd8a5cf7f2ffbd1860f0 | |
parent | Reorganisation (diff) | |
download | newspipe-314f852d95909fe5e2c2f2368a2e15b86c04ed7d.tar.gz newspipe-314f852d95909fe5e2c2f2368a2e15b86c04ed7d.tar.bz2 newspipe-314f852d95909fe5e2c2f2368a2e15b86c04ed7d.zip |
Fixed typo name of a function).
-rwxr-xr-x | source/pyAggr3g470r.py | 2 |
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") |