diff options
| author | 2019-12-05 17:09:15 +0530 | |
|---|---|---|
| committer | 2019-12-05 17:09:15 +0530 | |
| commit | 475754379856469b5a6a55a2f901250a018302ee (patch) | |
| tree | adce814c99b136fd233cbfe7e0cee30c026d11b6 | |
| parent | Fixed cog string issue (diff) | |
Update bot/seasons/evergreen/bookmark.py
Fixed the description of the command itself
Co-Authored-By: Matteo Bertucci <[email protected]>
| -rw-r--r-- | bot/seasons/evergreen/bookmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/bookmark.py b/bot/seasons/evergreen/bookmark.py index 1eadaaa8..8b0d32f3 100644 --- a/bot/seasons/evergreen/bookmark.py +++ b/bot/seasons/evergreen/bookmark.py @@ -16,7 +16,7 @@ class Bookmark(commands.Cog): @commands.command(name="bookmark", aliases=("bm", "pin"))
async def bookmark(self, ctx: commands.Context, jump_url: str = None, *args) -> None:
- """Bookmarks a message."""
+ """Send you a link to the provided message in DM."""
if jump_url is not None and jump_url != "*":
if "discordapp.com/channels" not in jump_url:
await ctx.send(
|