aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 9f1d6eec..a57c4b3e 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -210,7 +210,7 @@ class pyAggr3g470r(object):
# Description (full content) of the article
if plain_text == "1":
- description = utils.clear_string(article["article_content"])
+ description = "<p>" + utils.clear_string(article["article_content"]) + "</p>"
else:
description = article["article_content"]
if description != "":
bgstack15