From 14acfcafe4ae48cf4a1849b817bf991bebc68dd1 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 1 Aug 2005 21:08:21 +0000 Subject: [PATCH] Forgot a .split() that was causing the channel-database parsing to fail on bans. --- src/ircdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ircdb.py b/src/ircdb.py index 4884597d8..5a966b656 100644 --- a/src/ircdb.py +++ b/src/ircdb.py @@ -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):