Store nick in config as desired, not that already used.

As far as I can tell this lead to "reclaiming" a fallback nick.
This commit is contained in:
Steve Dougherty 2012-05-14 20:47:23 -04:00
parent bffa732d66
commit c2757eb5e1
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ class NickServRelayer(IRCRelayer):
IRCRelayer.__init__(self, config)
#super(NickServRelayer, self).__init__(config)
self.password = config['nickServPassword']
self.desiredNick = self.nickname
self.desiredNick = config['nick']
self.passwordAccepted = False
class NickServFactory(RelayFactory):