Private GIT

Skip to content
Snippets Groups Projects
Commit 5463a0fc authored by Alexandre Beloin's avatar Alexandre Beloin
Browse files

rtorrent: Fix encoding issue in windows

parent f8666102
No related branches found
No related tags found
No related merge requests found
......@@ -163,7 +163,7 @@ class RequestsTransport(xmlrpc_client.Transport):
Response tuple and target method.
"""
p, u = self.getparser()
p.feed(response.text)
p.feed(response.text.encode('utf-8'))
p.close()
return u.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment