From 156d9d9592d590e9168a70ff7d01d704cd10192e Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 6 Oct 2023 15:41:12 -0400 Subject: [PATCH] Fixed default path for tcp_kiss client. The tcp_kiss client initialization was using the serial_kiss client's path setting. --- aprsd/clients/kiss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd/clients/kiss.py b/aprsd/clients/kiss.py index db35256..21b21f9 100644 --- a/aprsd/clients/kiss.py +++ b/aprsd/clients/kiss.py @@ -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()