mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-07 19:49:23 +01:00
Added removeChannel to the SpaceSeparatedListOfChannels.
This commit is contained in:
parent
a898bdaa94
commit
ae97d0390a
11
src/conf.py
11
src/conf.py
@ -121,6 +121,17 @@ class SpaceSeparatedSetOfChannels(registry.SeparatedListOf):
|
|||||||
return s.split()
|
return s.split()
|
||||||
joiner = ' '.join
|
joiner = ' '.join
|
||||||
|
|
||||||
|
def removeChannel(self, channel):
|
||||||
|
removals = []
|
||||||
|
for c in self.value:
|
||||||
|
chan = c
|
||||||
|
if ',' in c:
|
||||||
|
(chan, _) = c.split(',')
|
||||||
|
if chan == channel:
|
||||||
|
removals.append(c)
|
||||||
|
for removal in removals:
|
||||||
|
self.value.remove(discard)
|
||||||
|
|
||||||
supybot.register('channels', SpaceSeparatedSetOfChannels(['#supybot'], """
|
supybot.register('channels', SpaceSeparatedSetOfChannels(['#supybot'], """
|
||||||
Determines what channels the bot will join when it connects to the server."""))
|
Determines what channels the bot will join when it connects to the server."""))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user