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):