aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 67beea86..3e26326b 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -180,7 +180,7 @@ class Root:
# Descrition for the CSS ToolTips
article_content = utils.clear_string(article.article_description)
if article_content:
- description = " ".join(article_content[:500].split(' ')[:-1])
+ description = " ".join(article_content.split(' ')[:55])
description = str(BeautifulSoup(description))
else:
description = "No description."
bgstack15