From 0995d077271ed97129c9d06833f710d2c2744dae Mon Sep 17 00:00:00 2001 From: Ben Skerritt <36114463+UP929312@users.noreply.github.com> Date: Mon, 7 Dec 2020 23:35:16 +0000 Subject: [PATCH] [commands] Added in missing channel links --- discord/ext/commands/converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index 85a301c63..a33924822 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -263,7 +263,7 @@ class MessageConverter(Converter): 3. Lookup by message URL .. versionchanged:: 1.5 - Raise :exc:`.ChannelNotFound`, `MessageNotFound` or `ChannelNotReadable` instead of generic :exc:`.BadArgument` + Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument` """ async def convert(self, ctx, argument): id_regex = re.compile(r'(?:(?P[0-9]{15,21})-)?(?P[0-9]{15,21})$')