Skip to content
Snippets Groups Projects
Commit c0149d59 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

Call to nonexistent method in SelectLayer

__close_channel() does not exist anymore
parent 802b4af8
No related branches found
No related tags found
No related merge requests found
...@@ -279,7 +279,7 @@ class SelectHandlingLayer(HandlingLayer): ...@@ -279,7 +279,7 @@ class SelectHandlingLayer(HandlingLayer):
select.select((channel, ), (), (), 0) select.select((channel, ), (), (), 0)
except select.error: except select.error:
# we found the one # we found the one
self.__close_channel(channel) self.close_channel(channel)
return return
except socket.error: except socket.error:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment