Skip to content

Commit

Permalink
fix issues pymodbus-dev#434
Browse files Browse the repository at this point in the history
  • Loading branch information
yoec-rd committed Aug 29, 2019
1 parent 31c1650 commit 4ddc961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymodbus/client/asynchronous/asyncio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ def connect(self):

yield from create_serial_connection(
self.loop, self._create_protocol, self.port, baudrate=self.baudrate,
bytesize=self.bytesize, stopbits=self.stopbits
bytesize=self.bytesize, stopbits=self.stopbits, parity=self.parity
)
yield from self._connected_event.wait()
_logger.info('Connected to %s', self.port)
Expand Down

0 comments on commit 4ddc961

Please sign in to comment.