force data written to stdout to be a string
(cherry picked from commit 65c24d4aeca6188f4423ad1809f2415285843155)master
parent
aaea01b924
commit
7ab204be73
|
@ -88,7 +88,7 @@ class _IkiWikiExtPluginXMLRPCHandler(object):
|
|||
|
||||
@staticmethod
|
||||
def _write(out_fd, data):
|
||||
out_fd.write(data)
|
||||
out_fd.write(str(data))
|
||||
out_fd.flush()
|
||||
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in New Issue