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 = { "<" : "<" , ">" : ">", "'" : "'", - "&" : "&" + "&" : "&", '"' : """, }