1
0
mirror of https://github.com/JoelBender/bacpypes synced 2025-09-28 22:15:23 +08:00

wrong abort function name (old code hotfix)

This commit is contained in:
Joel Bender 2017-02-21 23:39:55 -05:00
parent 132820c66d
commit f6a235d4b1
3 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ class IOCB(DebugContents):
# if there's a timer, cancel it
if self.ioTimeout:
if _debug: IOCB._debug(" - cancel timeout")
self.ioTimeout.SuspendTask()
self.ioTimeout.suspend_task()
# set the completion event
self.ioComplete.set()

View File

@ -160,7 +160,7 @@ class IOCB(DebugContents):
# if there's a timer, cancel it
if self.ioTimeout:
if _debug: IOCB._debug(" - cancel timeout")
self.ioTimeout.SuspendTask()
self.ioTimeout.suspend_task()
# set the completion event
self.ioComplete.set()

View File

@ -160,7 +160,7 @@ class IOCB(DebugContents):
# if there's a timer, cancel it
if self.ioTimeout:
if _debug: IOCB._debug(" - cancel timeout")
self.ioTimeout.SuspendTask()
self.ioTimeout.suspend_task()
# set the completion event
self.ioComplete.set()