Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Util/Network.py
diff options
context:
space:
mode:
authoramartin <olpc@xo-05-28-21.localdomain>2008-02-13 12:57:38 (GMT)
committer amartin <olpc@xo-05-28-21.localdomain>2008-02-13 12:57:38 (GMT)
commit70c89e7b191c376b2c35e58fb1f4db39d591858d (patch)
treeb9bf08f8e81df3de34eb70a648bc05025ff0fbe6 /common/Util/Network.py
parentd0e18e63595b6f4f5aabb659f372fa067e1e982f (diff)
network
Diffstat (limited to 'common/Util/Network.py')
-rw-r--r--common/Util/Network.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/common/Util/Network.py b/common/Util/Network.py
index 65a15b0..79fbab5 100644
--- a/common/Util/Network.py
+++ b/common/Util/Network.py
@@ -539,7 +539,6 @@ class Network:
con.recvBuf = con.recvBuf[con.waitingForData:]
con.waitingForData = 0
for func in self.processMessage[con.message]:
- print "idle_add", func, con.message
gobject.idle_add( func, sock, con.message, data )
else:
return # wait for more data
@@ -549,7 +548,6 @@ class Network:
if MSG_SIZE[con.message] == 0:
con.recvBuf = con.recvBuf[1:]
for func in self.processMessage[con.message]:
- print "idle_add", func, con.message
gobject.idle_add( func, sock, con.message, "" )
else:
con.waitingForData = MSG_SIZE[con.message]