Fixed default path for tcp_kiss client.

The tcp_kiss client initialization was using the serial_kiss client's
path setting.
This commit is contained in:
Hemna 2023-10-06 15:41:12 -04:00
parent 81169600bd
commit 156d9d9592
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class KISS3Client:
port=CONF.kiss_tcp.port,
strip_df_start=True,
)
self.path = CONF.kiss_serial.path
self.path = CONF.kiss_tcp.path
LOG.debug("Starting KISS interface connection")
self.kiss.start()