Skip to content

Commit 938b9ad

Browse files
authored
gui(web_services): Fix not all arguments converted during string formatting (#5136)
Fixes a string causing problems after #4052
1 parent 7bfe274 commit 938b9ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/wxpython/web_services/dialogs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def OnConnect(self, event):
376376
self.Fit()
377377

378378
self.statusbar.SetStatusText(
379-
_("Connecting to <$s>...") % self.server.GetValue().strip()
379+
_("Connecting to <%s>...") % self.server.GetValue().strip()
380380
)
381381

382382
# number of panels already connected

0 commit comments

Comments
 (0)