From ba8138230f173a4c067a4862a13aed0cff526a52 Mon Sep 17 00:00:00 2001 From: kthoden Date: Tue, 17 Dec 2019 12:15:04 +0100 Subject: [PATCH] Fix function --- src/utils/libeoaconvert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/libeoaconvert.py b/src/utils/libeoaconvert.py index 813366b..8fcf512 100644 --- a/src/utils/libeoaconvert.py +++ b/src/utils/libeoaconvert.py @@ -469,11 +469,11 @@ def restore_xml_tags(text): def escape_xml(text): """Convert xml markup to entities""" - replacements = { + replacements = { "<" : "<" , ">" : ">", "'" : "'", - "&" : "&" + "&" : "&", '"' : """, }