From 85411ef5850602c4c286971f6326b182a1f9b16a Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 7 Sep 2023 18:35:11 -0400 Subject: [PATCH] fix(forums): attempting a fix to tagset --- forums/forums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forums/forums.py b/forums/forums.py index b1edea7..ee31180 100644 --- a/forums/forums.py +++ b/forums/forums.py @@ -107,7 +107,7 @@ class Forums(commands.Cog): options = self.create_select_options(ctx, channel.available_tags) config = Config.get_conf(None, cog_name='Forums', identifier=2352711325) tag = channel.get_tag(await config.guild(ctx.guild).forum_tag()) - msg = await ctx.send(f"Forum tag is currently set to `{tag}`.") + msg = await ctx.send(f"Forum tag is currently set to `{str(tag)}`.") await msg.edit(view=SelectView(msg, options)) class Select(ui.Select):