From 01559233412399f25b4ce7496f6c19036ce16609 Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 6 Oct 2023 15:44:25 -0400 Subject: [PATCH] Changed the path option to a ListOpt Both serial_kiss and tcp_kiss path option is converted to a ListOpt to help generate a single line during sample-config generation. --- aprsd/conf/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aprsd/conf/client.py b/aprsd/conf/client.py index 9697783..31bf16c 100644 --- a/aprsd/conf/client.py +++ b/aprsd/conf/client.py @@ -72,7 +72,7 @@ kiss_serial_opts = [ default=9600, help="The Serial device baud rate for communication", ), - cfg.MultiStrOpt( + cfg.ListOpt( "path", default=["WIDE1-1", "WIDE2-1"], help="The APRS path to use for wide area coverage.", @@ -94,7 +94,7 @@ kiss_tcp_opts = [ default=8001, help="The KISS TCP/IP network port", ), - cfg.MultiStrOpt( + cfg.ListOpt( "path", default=["WIDE1-1", "WIDE2-1"], help="The APRS path to use for wide area coverage.",