aboutsummaryrefslogtreecommitdiff
path: root/source/pyAggr3g470r.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/pyAggr3g470r.py')
-rwxr-xr-xsource/pyAggr3g470r.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index f6b40fb6..cf0af11e 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -177,7 +177,8 @@ class pyAggr3g470r(object):
return self.error('<p>The database has not been <a href="/index_base">indexed</a>.</p>')
for result in results:
article = self.mongo.get_articles(result[0], result[1])
- search_result[result[0]].append(article)
+ if article != []:
+ search_result[result[0]].append(article)
sorted_search_result = {feed_id: sorted(articles, key=lambda t: t['article_date'], reverse=True) \
for feed_id, articles in search_result.items()}
tmpl = lookup.get_template("search.html")
bgstack15