From 77fa3573a13221c811201be5ce2d8810104a1cc5 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 11 Jun 2016 10:54:07 -0700 Subject: [PATCH] ServiceBot: remove defaults for nick and ident This fallback is handled by coreplugin already. --- utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index 0c091e2..314d898 100644 --- a/utils.py +++ b/utils.py @@ -154,8 +154,8 @@ class ServiceBot(): self.name = name # Nick/ident to take. Defaults to the same as the service name if not given. - self.nick = nick or name - self.ident = ident or name + self.nick = nick + self.ident = ident # Tracks whether the bot should be manipulatable by the 'bots' plugin and other commands. self.manipulatable = manipulatable