diff options
-rw-r--r-- | bot/exts/utilities/bookmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/bookmark.py b/bot/exts/utilities/bookmark.py index 608d6816..46c00438 100644 --- a/bot/exts/utilities/bookmark.py +++ b/bot/exts/utilities/bookmark.py @@ -204,7 +204,7 @@ class Bookmark(commands.Cog): permissions = ctx.channel.permissions_for(ctx.author) if not permissions.read_messages: log.info(f"{ctx.author} tried to bookmark a message in #{ctx.channel} but has no permissions.") - embed = Bookmark.build_error_embed("You don't have permission to view this channel.") + embed = self.build_error_embed("You don't have permission to view this channel.") await ctx.send(embed=embed) return |