Commit 56778659 authored by Romain Courteaud's avatar Romain Courteaud

Correctly encode instance_guid.

parent 08eff355
...@@ -1334,7 +1334,7 @@ class SlapTool(BaseTool): ...@@ -1334,7 +1334,7 @@ class SlapTool(BaseTool):
if (newtimestamp > timestamp): if (newtimestamp > timestamp):
timestamp = newtimestamp timestamp = newtimestamp
return { return {
'instance_guid': software_instance.getReference(), 'instance_guid': software_instance.getReference().decode("UTF-8"),
'xml': software_instance.getTextContent(), 'xml': software_instance.getTextContent(),
'connection_xml': software_instance.getConnectionXml(), 'connection_xml': software_instance.getConnectionXml(),
'slap_computer_id': \ 'slap_computer_id': \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment