From 938b9ad60054e3c3df1fe25f43627284ea4f46b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edouard=20Choini=C3=A8re?= <27212526+echoix@users.noreply.github.com> Date: Tue, 18 Feb 2025 12:09:50 -0500 Subject: [PATCH] gui(web_services): Fix not all arguments converted during string formatting (#5136) Fixes a string causing problems after #4052 --- gui/wxpython/web_services/dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/wxpython/web_services/dialogs.py b/gui/wxpython/web_services/dialogs.py index 309d4b8387c..3a217800dc8 100644 --- a/gui/wxpython/web_services/dialogs.py +++ b/gui/wxpython/web_services/dialogs.py @@ -376,7 +376,7 @@ def OnConnect(self, event): self.Fit() self.statusbar.SetStatusText( - _("Connecting to <$s>...") % self.server.GetValue().strip() + _("Connecting to <%s>...") % self.server.GetValue().strip() ) # number of panels already connected