diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/seasons/evergreen/bookmark.py | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/bot/seasons/evergreen/bookmark.py b/bot/seasons/evergreen/bookmark.py index 10ea4fe9..bbe362aa 100644 --- a/bot/seasons/evergreen/bookmark.py +++ b/bot/seasons/evergreen/bookmark.py @@ -16,10 +16,11 @@ class Bookmark(commands.Cog):          self.bot = bot
      @commands.command(name="bookmark", aliases=("bm", "pin"))
 -    async def bookmark(self, ctx: commands.Context, target_message: discord.Message, *,
 +    async def bookmark(self, ctx: commands.Context, 
 +                       target_message: discord.Message, *,
                         title: str = None) -> None:
          """Send you a link to the provided message in DM."""
 -        log.info(f"{ctx.author} bookmarked {target_message.jump_url} with hints {title}.")
 +        log.info(f"{ctx.author} bookmarked {target_message.jump_url} with title {title}.")
          embed = discord.Embed(
              title=title,
 | 
