Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Util
diff options
context:
space:
mode:
authoramartin <olpc@xo-05-28-21.localdomain>2008-02-13 07:41:47 (GMT)
committer amartin <olpc@xo-05-28-21.localdomain>2008-02-13 07:41:47 (GMT)
commit99f90d6206f9840c8988615b95b05aa968490c88 (patch)
tree24244bc021cdef673cf8823e616d8bbc0e2e860c /common/Util
parente7136df3a45b124d67baae43dab85a0a4012647b (diff)
network
Diffstat (limited to 'common/Util')
-rw-r--r--common/Util/Network.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Util/Network.py b/common/Util/Network.py
index 0c480b5..c2a5d07 100644
--- a/common/Util/Network.py
+++ b/common/Util/Network.py
@@ -80,7 +80,7 @@ class Listener( threading.Thread ):
def run(self):
while 1: # rely on the owner to kill us when necessary
try:
- inputReady, outputReady, exceptReady = select.select( self.inputSockets, self.outputSockets, self.exceptSockets, 0 )
+ inputReady, outputReady, exceptReady = select.select( self.inputSockets, self.outputSockets, self.exceptSockets )
if not len( inputReady ): # timeout
continue
if self.listenerSocket in inputReady: