BOM-996
Fixing Test.
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user