From c4476e7f579cc7efe927d2986a5b685dcce0d20c Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar do Carmo Lucas" Date: Thu, 25 Apr 2024 18:27:08 +0200 Subject: [PATCH] IMPROVEMENT: remove duplicated "udp:" string in example text --- MethodicConfigurator/frontend_tkinter_connection_selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MethodicConfigurator/frontend_tkinter_connection_selection.py b/MethodicConfigurator/frontend_tkinter_connection_selection.py index 62972df..4183209 100644 --- a/MethodicConfigurator/frontend_tkinter_connection_selection.py +++ b/MethodicConfigurator/frontend_tkinter_connection_selection.py @@ -133,7 +133,7 @@ def add_connection(self): "Examples are:\n\nCOM4 (on windows)\n" "/dev/serial/by-id/usb-xxx (on linux)\n" "tcp:127.0.0.1:5761\n" - "udp:udp:127.0.0.1:14551") + "udp:127.0.0.1:14551") if selected_connection: logging_debug(f"Will add new connection: {selected_connection} if not duplicated") self.flight_controller.add_connection(selected_connection)