Silly mistake caught by continuous build.
This commit is contained in:
@@ -15,7 +15,7 @@ class Hub(BaseHub):
|
|||||||
""" Iterate through fds, removing the ones that are bad per the
|
""" Iterate through fds, removing the ones that are bad per the
|
||||||
operating system.
|
operating system.
|
||||||
"""
|
"""
|
||||||
for fd in self.readers.keys() + self.writers.keys():
|
for fd in self.listeners[READ].keys() + self.listeners[WRITE].keys():
|
||||||
try:
|
try:
|
||||||
select.select([fd], [], [], 0)
|
select.select([fd], [], [], 0)
|
||||||
except select.error, e:
|
except select.error, e:
|
||||||
|
Reference in New Issue
Block a user