From e7136df3a45b124d67baae43dab85a0a4012647b Mon Sep 17 00:00:00 2001 From: amartin Date: Wed, 13 Feb 2008 07:28:37 +0000 Subject: network --- (limited to 'common') 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: -- cgit v0.9.1