mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Forgot a .split() that was causing the channel-database parsing to fail on bans.
This commit is contained in:
parent
5582e69268
commit
14acfcafe4
@ -539,7 +539,7 @@ class IrcChannelCreator(Creator):
|
|||||||
|
|
||||||
def ban(self, rest, lineno):
|
def ban(self, rest, lineno):
|
||||||
self._checkId()
|
self._checkId()
|
||||||
(pattern, expiration) = rest
|
(pattern, expiration) = rest.split()
|
||||||
self.c.bans[pattern] = int(float(expiration))
|
self.c.bans[pattern] = int(float(expiration))
|
||||||
|
|
||||||
def ignore(self, rest, lineno):
|
def ignore(self, rest, lineno):
|
||||||
|
Loading…
Reference in New Issue
Block a user