From 1189b2f53eb7d553c777feef1763fa15b708bd85 Mon Sep 17 00:00:00 2001 From: "N0\\A" Date: Fri, 24 Oct 2025 19:47:28 +0200 Subject: [PATCH] identify as CLARA --- core/dukto.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/dukto.py b/core/dukto.py index 35b1d77..84edb7c 100644 --- a/core/dukto.py +++ b/core/dukto.py @@ -58,10 +58,10 @@ class DuktoProtocol: self.local_tcp_port = tcp_port def get_system_signature(self) -> str: - username = getpass.getuser() + name = getpass.getuser() + "'s CLARA" hostname = socket.gethostname() system = platform.system() - return f"{username} at {hostname} ({system})" + return f"{name} at {hostname} ({system})" def initialize(self): # UDP Socket for peer discovery