From: John Runyon Date: Thu, 16 Nov 2023 19:10:55 +0000 (-0700) Subject: !rejoin - tell user which channel was rejoined X-Git-Url: https://jfr.im/git/erebus.git/commitdiff_plain/023239aa0ba60717e35ecc6bfea7772bb00b2ca5 !rejoin - tell user which channel was rejoined --- diff --git a/modules/admin_channel.py b/modules/admin_channel.py index 91e65c0..2899f02 100644 --- a/modules/admin_channel.py +++ b/modules/admin_channel.py @@ -29,7 +29,7 @@ modstop = lib.modstop @lib.help(None, "rejoin a channel (if the bot has been kicked)") def rejoin(bot, user, chan, realtarget, *args): bot.join(str(chan)) - bot.msg(user, "Rejoined.") + bot.msg(user, "Rejoined %s." % (chan)) def _resolve_user(s):