summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Fritz <nathan@andyet.net>2010-03-15 10:19:45 -0700
committerNathan Fritz <nathan@andyet.net>2010-03-15 10:19:45 -0700
commitd4a490e3f08489af7b12943a98515b4b66e1430e (patch)
tree99f061c302f53581dc1510cb6904205838e4755c
parentc239fb1f90ba794abfc142e5b1043a4110dcb754 (diff)
downloadslixmpp-d4a490e3f08489af7b12943a98515b4b66e1430e.tar.gz
slixmpp-d4a490e3f08489af7b12943a98515b4b66e1430e.tar.bz2
slixmpp-d4a490e3f08489af7b12943a98515b4b66e1430e.tar.xz
slixmpp-d4a490e3f08489af7b12943a98515b4b66e1430e.zip
fixed xmlstream filesocket issue
-rw-r--r--sleekxmpp/xmlstream/xmlstream.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/xmlstream.py b/sleekxmpp/xmlstream/xmlstream.py
index 6898aac9..594583a8 100644
--- a/sleekxmpp/xmlstream/xmlstream.py
+++ b/sleekxmpp/xmlstream/xmlstream.py
@@ -202,7 +202,7 @@ class XMLStream(object):
def __readXML(self):
"Parses the incoming stream, adding to xmlin queue as it goes"
#build cElementTree object from expat was we go
- self.filesocket = self.socket.makefile('rb', 0)
+ #self.filesocket = self.socket.makefile('rb', 0)
#print self.filesocket.read(1024) #self.filesocket._sock.recv(1024)
edepth = 0
root = None