Skip to content

Commit

Permalink
async: missing slaves: add missing imports
Browse files Browse the repository at this point in the history
1e0bcde is missing imports into the
async server, the import was only added to the sync server.

Further fix for pymodbus-dev#42

Signed-off-by: Karl Palsson <[email protected]>
  • Loading branch information
karlp committed Sep 30, 2014
1 parent eb51b4d commit 14b2a84
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pymodbus/server/async.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
------------------------------------------
'''
import traceback
from binascii import b2a_hex
from twisted.internet import protocol
from twisted.internet.protocol import ServerFactory
Expand All @@ -13,6 +14,7 @@
from pymodbus.device import ModbusControlBlock
from pymodbus.device import ModbusAccessControl
from pymodbus.device import ModbusDeviceIdentification
from pymodbus.exceptions import NoSuchSlaveException
from pymodbus.transaction import ModbusSocketFramer, ModbusAsciiFramer
from pymodbus.pdu import ModbusExceptions as merror
from pymodbus.internal.ptwisted import InstallManagementConsole
Expand Down

0 comments on commit 14b2a84

Please sign in to comment.