Bug fix
This commit is contained in:
parent
aa836cdf39
commit
b32b6b4b04
|
@ -225,7 +225,7 @@ class IOLoop(object):
|
||||||
|
|
||||||
def remove_callback(self, callback):
|
def remove_callback(self, callback):
|
||||||
"""Removes the given callback from the next I/O loop iteration."""
|
"""Removes the given callback from the next I/O loop iteration."""
|
||||||
self._callbacks.pop(callback)
|
self._callbacks.remove(callback)
|
||||||
|
|
||||||
def _wake(self):
|
def _wake(self):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue