From 1851fda9e02f6591659b54db3ea286d557a7acbd Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 15 Apr 2025 18:51:52 +0200 Subject: [PATCH] Fixed interface string representation --- RNS/Interfaces/LocalInterface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RNS/Interfaces/LocalInterface.py b/RNS/Interfaces/LocalInterface.py index 5f318fa..e5aef6d 100644 --- a/RNS/Interfaces/LocalInterface.py +++ b/RNS/Interfaces/LocalInterface.py @@ -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):