From 2a02e26f2ae47a455a55182f59a8beb23f8cc9e8 Mon Sep 17 00:00:00 2001 From: pilou Date: Thu, 14 Mar 2024 21:45:24 +0100 Subject: [PATCH] Bugfix --- icingabot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icingabot.py b/icingabot.py index 42ee38d..57fe353 100755 --- a/icingabot.py +++ b/icingabot.py @@ -225,7 +225,7 @@ class IcingaBot(Icinga2ServiceManager, irc.bot.SingleServerIRCBot): return def on_nicknameinuse(self, c, e): - c.nick(+"_") + c.nick(c.get_nickname() + "_") def on_welcome(self, c, e): c.join(self.channel)