diff options
author | 2021-04-19 21:09:10 +0100 | |
---|---|---|
committer | 2021-04-19 21:09:10 +0100 | |
commit | 227d0a7705e08b74deb9b95ec4f643b1d0a0fcdd (patch) | |
tree | adb2e186f50860f96afeed57158974c0401c8635 /bot/exts/evergreen/bookmark.py | |
parent | chore(evergreen): format each cog load docstring the same way (diff) |
chore(evergreen): make usage of . at sentence ends consistent
Diffstat (limited to 'bot/exts/evergreen/bookmark.py')
-rw-r--r-- | bot/exts/evergreen/bookmark.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/bookmark.py b/bot/exts/evergreen/bookmark.py index 329838b9..ec25e7a7 100644 --- a/bot/exts/evergreen/bookmark.py +++ b/bot/exts/evergreen/bookmark.py @@ -29,7 +29,7 @@ class Bookmark(commands.Cog): # Prevent users from bookmarking a message in a channel they don't have access to permissions = ctx.author.permissions_in(target_message.channel) if not permissions.read_messages: - log.info(f"{ctx.author} tried to bookmark a message in #{target_message.channel} but has no permissions") + log.info(f"{ctx.author} tried to bookmark a message in #{target_message.channel} but has no permissions.") embed = discord.Embed( title=random.choice(ERROR_REPLIES), color=Colours.soft_red, @@ -52,7 +52,7 @@ class Bookmark(commands.Cog): except discord.Forbidden: error_embed = discord.Embed( title=random.choice(ERROR_REPLIES), - description=f"{ctx.author.mention}, please enable your DMs to receive the bookmark", + description=f"{ctx.author.mention}, please enable your DMs to receive the bookmark.", colour=Colours.soft_red ) await ctx.send(embed=error_embed) |