Must be STR to concatenate
This commit is contained in:
parent
73b57d8e34
commit
648f0d9820
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ def debug(bot: bare.bot, chan: str, name: str, message: str) -> None:
|
||||||
"VERSION": bot.__version__,
|
"VERSION": bot.__version__,
|
||||||
"NICKLEN": bot.nicklen,
|
"NICKLEN": bot.nicklen,
|
||||||
"NICK": bot.nick,
|
"NICK": bot.nick,
|
||||||
"ADMINS": conf.servers[bot.server]["hosts"] + " (Does not include hostname checks)",
|
"ADMINS": str(conf.servers[bot.server]["hosts"]) + " (Does not include hostname checks)",
|
||||||
"CHANNELS": bot.channels,
|
"CHANNELS": bot.channels,
|
||||||
}
|
}
|
||||||
bot.msg(f"[DEBUG] {dbg_out}", chan)
|
bot.msg(f"[DEBUG] {dbg_out}", chan)
|
||||||
|
|
Loading…
Reference in a new issue