diff options
author | Joey Hess <joey@kitenet.net> | 2013-07-10 18:00:53 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-07-10 18:00:53 -0400 |
commit | 86abde54c0b63dedcf62a9a6ccc6870e1af96c54 (patch) | |
tree | cff8491b6e38de54b49d16914d8da1c845a5590a /plugins | |
parent | 46e0c5742ce2d380904987b8a2655fe157faca3e (diff) | |
download | ikiwiki-86abde54c0b63dedcf62a9a6ccc6870e1af96c54.tar ikiwiki-86abde54c0b63dedcf62a9a6ccc6870e1af96c54.tar.gz |
Fix python proxy to not crash when fed unicode data in getstate and setstate.
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/proxy.py b/plugins/proxy.py index 41cc45700..ca731301f 100755 --- a/plugins/proxy.py +++ b/plugins/proxy.py @@ -175,7 +175,7 @@ class _IkiWikiExtPluginXMLRPCHandler(object): data = _xmlrpc_client.loads(xml)[0][0] self._debug_fn( 'parsed data from response to procedure {0}: [{1}]'.format( - cmd, data)) + cmd, repr(data))) return data def handle_rpc(self, in_fd, out_fd): |