7403af
Actually make things work in python3.
7403af
7403af
Author: Jan Synacek <jsynacek@redhat.com>
7403af
7403af
Index: pidgin-2.13.0/libpurple/purple-remote
7403af
===================================================================
7403af
--- pidgin-2.13.0.orig/libpurple/purple-remote
7403af
+++ pidgin-2.13.0/libpurple/purple-remote
7403af
@@ -14,7 +14,7 @@ import sys
7403af
 import xml.dom.minidom 
7403af
 
7403af
 sys.stdin = codecs.getwriter('utf-8')(sys.stdin);
7403af
-sys.stdout = codecs.getwriter('utf-8')(sys.stdout);
7403af
+sys.stdout = codecs.getwriter('utf-8')(sys.stdout.detach());
7403af
 
7403af
 xml.dom.minidom.Element.all   = xml.dom.minidom.Element.getElementsByTagName
7403af