1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

ACI Rest: Fix issue with XML response (#28785)

This commit is contained in:
Jacob McGill 2017-08-29 14:41:17 -04:00 committed by Dag Wieers
parent d740dfdcb6
commit e3b66a8016

View file

@ -192,6 +192,7 @@ def aci_response(result, rawoutput, rest_type='xml'):
if rest_type == 'json':
aci_response_json(result, rawoutput)
else:
aci_response_xml(result, rawoutput)