Skip to content
Snippets Groups Projects
Commit 5f2ebf71 authored by Awais Qureshi's avatar Awais Qureshi
Browse files

BOM-996

Fixing Test.
parent 63603751
No related merge requests found
......@@ -167,7 +167,7 @@ class ClarificationRenderer(object):
self.system = system
# Get any text content found inside this tag prior to the first child tag. It may be a string or None type.
initial_text = xml.text if xml.text else ''
self.inner_html = initial_text + ''.join(etree.tostring(element) for element in xml)
self.inner_html = initial_text + u''.join(etree.tostring(element, encoding='unicode') for element in xml)
self.tail = xml.tail
def get_html(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment