mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-06-20 12:44:23 -04:00
Fixed interface string representation
This commit is contained in:
parent
80eec131f8
commit
1851fda9e0
1 changed files with 2 additions and 2 deletions
|
@ -329,8 +329,8 @@ class LocalClientInterface(Interface):
|
||||||
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
if self.socket_path: return "Shared Instance["+str(self.socket_path.replace("\0", ""))+"]"
|
if self.socket_path: return "LocalInterface["+str(self.socket_path.replace("\0", ""))+"]"
|
||||||
else: return "Shared Instance["+str(self.target_port)+"]"
|
else: return "LocalInterface["+str(self.target_port)+"]"
|
||||||
|
|
||||||
|
|
||||||
class LocalServerInterface(Interface):
|
class LocalServerInterface(Interface):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue