Skip to content

Commit

Permalink
gui(web_services): Fix not all arguments converted during string form…
Browse files Browse the repository at this point in the history
…atting (#5136)

Fixes a string causing problems after #4052
  • Loading branch information
echoix authored Feb 18, 2025
1 parent 7bfe274 commit 938b9ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/web_services/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 938b9ad

Please sign in to comment.