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):