Fixed interface string representation

pull/801/head
Mark Qvist 2025-04-15 18:51:52 +02:00
rodzic 80eec131f8
commit 1851fda9e0
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -329,8 +329,8 @@ class LocalClientInterface(Interface):
def __str__(self):
if self.socket_path: return "Shared Instance["+str(self.socket_path.replace("\0", ""))+"]"
else: return "Shared Instance["+str(self.target_port)+"]"
if self.socket_path: return "LocalInterface["+str(self.socket_path.replace("\0", ""))+"]"
else: return "LocalInterface["+str(self.target_port)+"]"
class LocalServerInterface(Interface):