aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-04-15 08:10:40 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-04-15 08:10:40 +0200
commit0407ec89694cec44e9f555ee958df45eba301bbb (patch)
tree5594ad6bbebccbf5bcca758194dd232656b50ed6 /source
parentAdded tag 3.9 for changeset cc98d870563d (diff)
downloadnewspipe-0407ec89694cec44e9f555ee958df45eba301bbb.tar.gz
newspipe-0407ec89694cec44e9f555ee958df45eba301bbb.tar.bz2
newspipe-0407ec89694cec44e9f555ee958df45eba301bbb.zip
The plan text version of an article is now between a <p> HTML tag.
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