Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-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 79fbab5..0c480b5 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.5 )
+ inputReady, outputReady, exceptReady = select.select( self.inputSockets, self.outputSockets, self.exceptSockets, 0 )
if not len( inputReady ): # timeout
continue
if self.listenerSocket in inputReady: