mirror of
https://github.com/JoelBender/bacpypes
synced 2025-09-28 22:15:23 +08:00
wrong function name
This commit is contained in:
parent
37561fbd4e
commit
b1fc637193
|
@ -154,7 +154,7 @@ class IOCB(DebugContents):
|
|||
# if it's queued, remove it from its queue
|
||||
if self.ioQueue:
|
||||
if _debug: IOCB._debug(" - dequeue")
|
||||
self.ioQueue.Remove(self)
|
||||
self.ioQueue.remove(self)
|
||||
|
||||
# if there's a timer, cancel it
|
||||
if self.ioTimeout:
|
||||
|
|
|
@ -155,7 +155,7 @@ class IOCB(DebugContents):
|
|||
# if it's queued, remove it from its queue
|
||||
if self.ioQueue:
|
||||
if _debug: IOCB._debug(" - dequeue")
|
||||
self.ioQueue.Remove(self)
|
||||
self.ioQueue.remove(self)
|
||||
|
||||
# if there's a timer, cancel it
|
||||
if self.ioTimeout:
|
||||
|
|
|
@ -155,7 +155,7 @@ class IOCB(DebugContents):
|
|||
# if it's queued, remove it from its queue
|
||||
if self.ioQueue:
|
||||
if _debug: IOCB._debug(" - dequeue")
|
||||
self.ioQueue.Remove(self)
|
||||
self.ioQueue.remove(self)
|
||||
|
||||
# if there's a timer, cancel it
|
||||
if self.ioTimeout:
|
||||
|
|
Loading…
Reference in New Issue
Block a user