commit faa6d89dbc67c273b74a0a2fc003823959975819 Author: hiro hiro@torproject.org Date: Mon Sep 2 19:08:14 2019 +0200
Refactor plugin --- packages/xml-to-html/lektor_xml_to_html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/xml-to-html/lektor_xml_to_html.py b/packages/xml-to-html/lektor_xml_to_html.py index ead0817..3bd0cdd 100644 --- a/packages/xml-to-html/lektor_xml_to_html.py +++ b/packages/xml-to-html/lektor_xml_to_html.py @@ -27,7 +27,7 @@ class DisqusCommentsPlugin(Plugin): for entry in items: title = entry.findtext('title') link = entry.findtext('link') - stream += "<h3><a href="" + link +"">" + title + "</a></h3>") + stream += "<h3><a href="" + link +"">" + title + "</a></h3>"
return stream
tor-commits@lists.torproject.org