mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Unicode in result debug statements caused a traceback
This commit is contained in:
@@ -59,7 +59,7 @@ class ResultProcess(multiprocessing.Process):
|
||||
super(ResultProcess, self).__init__()
|
||||
|
||||
def _send_result(self, result):
|
||||
debug("sending result: %s" % (result,))
|
||||
debug(u"sending result: %s" % ([unicode(x) for x in result],))
|
||||
self._final_q.put(result, block=False)
|
||||
debug("done sending result")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user