Include XML in domain information

This commit is contained in:
Joshua Boniface 2019-07-25 16:29:29 -04:00
parent fb40ef5b04
commit 8071fb87d7
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ def getInformationFromXML(zk_conn, uuid):
'features': domain_features,
'disks': domain_disks,
'controllers': domain_controllers,
'xml': parsed_xml
'xml': lxml.etree.tostring(parsed_xml, encoding='ascii', method='xml').decode().replace('\"', '\'')
}
return domain_information