diff options
-rwxr-xr-x | pyAggr3g470r.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index aba44f49..feb57881 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -372,9 +372,10 @@ class Root: (feed_id, article.article_id, article.article_title) + \ not_read_end + """<br />\n""" else: + articles = self.mongo.get_all_articles() for feed in self.feeds.values(): new_feed_section = True - for article in feed.articles.values(): + for article in articles: article_content = utils.clear_string(article.article_description) if not article_content: utils.clear_string(article.article_title) |