From f02c24868a01f7ca3a569e4d80de932e0e642ef1 Mon Sep 17 00:00:00 2001 From: Krytarik Raido Date: Sat, 12 Mar 2022 03:50:04 +0100 Subject: [PATCH] Improve output of gathered user details. --- plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin.py b/plugin.py index d16d21d..c4b6373 100644 --- a/plugin.py +++ b/plugin.py @@ -1348,13 +1348,13 @@ class Nick(object): def __repr__(self): ip = self.ip if ip is None: - ip = '' + ip = '(n/a)' account = self.account if account is None: - account = '' + account = '(n/a)' realname = self.realname if realname is None: - realname = '' + realname = '(n/a)' return '%s ip:%s account:%s username:%s' % (self.prefix, ip, account, realname)