aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 1ab9448b..d72a6008 100644
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -152,7 +152,7 @@ class Root:
article_content = ""
for rss_feed_id in self.dic.keys():
for article in self.dic[rss_feed_id]:
- article_content += remove_html_tags(article[4].encode('utf-8') + article[2].encode('utf-8'))
+ article_content += remove_html_tags(article[4].encode('utf-8'))
words_gen = (word.strip(punctuation).lower() \
for word in article_content.split() \
bgstack15