From 648f0d98201dbb3889c682501da3e8cb09f55d94 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Tue, 14 Nov 2023 22:56:24 -0600 Subject: [PATCH] Must be STR to concatenate --- commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.py b/commands.py index 908f90d..668453d 100644 --- a/commands.py +++ b/commands.py @@ -127,7 +127,7 @@ def debug(bot: bare.bot, chan: str, name: str, message: str) -> None: "VERSION": bot.__version__, "NICKLEN": bot.nicklen, "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, } bot.msg(f"[DEBUG] {dbg_out}", chan)