Fix crash when loading user with two nicks or more.

This commit is contained in:
Valentin Lorentz 2012-11-07 19:00:41 +01:00
parent 5de01bd222
commit 25855e5547
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ class IrcUserCreator(Creator):
def nicks(self, rest, lineno):
self._checkId()
network, nicks = rest.split(' ', 2)
network, nicks = rest.split(' ', 1)
self.u.nicks[network] = nicks.split(' ')
def capability(self, rest, lineno):