Forgot a .split() that was causing the channel-database parsing to fail on bans.

This commit is contained in:
Jeremy Fincher 2005-08-01 21:08:21 +00:00
parent 5582e69268
commit 14acfcafe4
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ class IrcChannelCreator(Creator):
def ban(self, rest, lineno):
self._checkId()
(pattern, expiration) = rest
(pattern, expiration) = rest.split()
self.c.bans[pattern] = int(float(expiration))
def ignore(self, rest, lineno):