Skip to content
Snippets Groups Projects
Commit 967c1bc4 authored by Auke Klazema's avatar Auke Klazema
Browse files

SW-609: Decode bytes to string to make Pyhton3 happy

parent dd2a91f8
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ class SpecificationTranslationHandler(MessageHandlerInterface):
logger.error("Exception while translating specification -> " + str(err))
raise
logger.debug("MoM spec after translation -> " + momspec_xml)
logger.debug("MoM spec after translation -> " + momspec_xml.decode("utf-8"))
response = validationrpc.validate_mom_specification(momspec_xml)
if response["valid"]:
logger.info("Translation successful")
......
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