From f4cec66a008fe13dfe9649a027b46e9706612b98 Mon Sep 17 00:00:00 2001 From: Nils <> Date: Sun, 26 Dec 2021 21:37:48 +0100 Subject: [PATCH] docstring --- engine/nsmservercontrol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/nsmservercontrol.py b/engine/nsmservercontrol.py index 1ccd536..ca25f70 100644 --- a/engine/nsmservercontrol.py +++ b/engine/nsmservercontrol.py @@ -909,7 +909,7 @@ class NsmServerControl(object): self.sock.sendto(msg.build(), self.nsmOSCUrl) def clientShow(self, clientId:str): - """Hides the client. Works only if client announced itself with this feature""" + """Shows the client. Works only if client announced itself with this feature""" msg = _OutgoingMessage("/nsm/gui/client/show_optional_gui") msg.add_arg(clientId) #s:clientId self.sock.sendto(msg.build(), self.nsmOSCUrl)