From db9f362857abe2ef70aefca19dcc644ca1e22259 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 25 Jul 2016 11:02:08 -0700 Subject: [PATCH] clientbot: use colon for realname in USER --- protocols/clientbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/clientbot.py b/protocols/clientbot.py index b2a8e0f..db20f04 100644 --- a/protocols/clientbot.py +++ b/protocols/clientbot.py @@ -66,7 +66,7 @@ class ClientbotWrapperProtocol(Protocol): self.conf_nick = self.irc.serverdata.get('pylink_nick') or conf.conf["bot"].get("nick", "PyLink") f('NICK %s' % (self.conf_nick)) ident = self.irc.serverdata.get('pylink_ident') or conf.conf["bot"].get("ident", "pylink") - f('USER %s 8 * %s' % (ident, # TODO: per net realnames or hostnames aren't implemented yet. + f('USER %s 8 * :%s' % (ident, # TODO: per net realnames or hostnames aren't implemented yet. conf.conf["bot"].get("realname", "PyLink Clientbot"))) # Note: clientbot clients are initialized with umode +i by default