Unicode in result debug statements caused a traceback

This commit is contained in:
James Cammarata 2015-07-15 01:55:45 -04:00
parent ae6d9ebf28
commit 0b035a4e35
2 changed files with 2 additions and 2 deletions

View file

@ -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")