summaryrefslogtreecommitdiff
path: root/WikiTrans
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-08-05 13:13:22 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-08-05 13:13:22 +0300
commiteb81aad9d5c9f42b480a52c22ea7e26e0ea5d4c2 (patch)
tree8d7a59ec76a439a65d27d319a34a06400715f198 /WikiTrans
parentcb47437dc165538a85fcc0a9a0c8ea59d403ab26 (diff)
downloadwikitrans-eb81aad9d5c9f42b480a52c22ea7e26e0ea5d4c2.tar.gz
wikitrans-eb81aad9d5c9f42b480a52c22ea7e26e0ea5d4c2.tar.bz2
Improve inter-version compatibility
* WikiTrans/wiki2html.py (HtmlTextNode): Use quote=False to make sure same output is obtained in Python 2.7 and 3.x * testdata/headings.html: Update
Diffstat (limited to 'WikiTrans')
-rw-r--r--WikiTrans/wiki2html.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/WikiTrans/wiki2html.py b/WikiTrans/wiki2html.py
index 7c71602..00f02b5 100644
--- a/WikiTrans/wiki2html.py
+++ b/WikiTrans/wiki2html.py
@@ -105,7 +105,7 @@ class HtmlTextNode(HtmlSeqNode):
if isinstance(self.content,list):
s = ''.join(self.content)
else:
- s = html_escape(self.content, quote=True)
+ s = html_escape(self.content, quote=False)
return s
class HtmlHdrNode(WikiHdrNode):

Return to:

Send suggestions and report system problems to the System administrator.