Blame SOURCES/pidgin-2.10.11-purple-remote-python3.patch

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