forked from Firepup650/FireBot
FIX: Don't default to having ignored channels being an integer
This commit is contained in:
parent
b356bfb19b
commit
90e59f9868
1 changed files with 1 additions and 1 deletions
2
bot.py
2
bot.py
|
@ -38,7 +38,7 @@ class bot(bare.bot):
|
||||||
self.ignores = (
|
self.ignores = (
|
||||||
conf.servers[server]["ignores"]
|
conf.servers[server]["ignores"]
|
||||||
if "ignores" in conf.servers[server]
|
if "ignores" in conf.servers[server]
|
||||||
else 6667
|
else []
|
||||||
)
|
)
|
||||||
self.__version__ = conf.__version__
|
self.__version__ = conf.__version__
|
||||||
self.npallowed = conf.npallowed
|
self.npallowed = conf.npallowed
|
||||||
|
|
Loading…
Reference in a new issue