Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adjusting select wait time to not suck
  • Loading branch information
integgroll committed Feb 24, 2012
1 parent 17347eb commit caa423d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wharfwhacker.py
Expand Up @@ -54,7 +54,7 @@ def start(self):
self.new_ports()
#Code that actually operates things
print self.connection_sockets
responses, blank, exceptions = select.select(self.connection_sockets,[],self.connection_sockets,59)
responses, blank, exceptions = select.select(self.connection_sockets,[],self.connection_sockets,1)
for response in responses:
if response in self.connection_sockets:
connection , addr = response.accept()
Expand Down

0 comments on commit caa423d

Please sign in to comment.