aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 5e378373..aa827d12 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -35,7 +35,6 @@ import calendar
import threading
from collections import Counter
-from BeautifulSoup import BeautifulSoup
import datetime
import utils
@@ -183,7 +182,6 @@ class Root:
article_content = utils.clear_string(article.article_description)
if article_content:
description = " ".join(article_content.split(' ')[:55])
- description = str(BeautifulSoup(description))
else:
description = "No description."
# Title of the article
bgstack15