diff options
| author | 2019-12-05 20:04:12 +0530 | |
|---|---|---|
| committer | 2019-12-05 20:04:12 +0530 | |
| commit | ba5d80c396a92f6e261a74e3af7bd4ad07c73d84 (patch) | |
| tree | f698b7d588f6ea7cde784539c3bfbecd8cc674cb /bot/seasons | |
| parent | Fixed typo of DMs (diff) | |
renamed error completely
Diffstat (limited to 'bot/seasons')
| -rw-r--r-- | bot/seasons/evergreen/bookmark.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/evergreen/bookmark.py b/bot/seasons/evergreen/bookmark.py index ca06711a..d1077bd3 100644 --- a/bot/seasons/evergreen/bookmark.py +++ b/bot/seasons/evergreen/bookmark.py @@ -27,7 +27,7 @@ class Bookmark(commands.Cog):                                  "`[command alias] [message url] (bookmark name)`",
                      colour=Colours.soft_red
                  )
 -                await ctx.send(embed=embed_error_1)
 +                await ctx.send(embed=embed_error)
                  return
          if jump_url is None or jump_url == "*":
              channel = ctx.channel
 @@ -61,7 +61,7 @@ class Bookmark(commands.Cog):                  description="You have to enable direct messages from this server to receive DMs from me.",
                  colour=Colours.soft_red
              )
 -            await ctx.send(embed=embed_error_2)
 +            await ctx.send(embed=embed_error)
              return
          await ctx.send("Sent you a DM!")
  |