diff options
| author | 2020-05-31 12:17:10 +0300 | |
|---|---|---|
| committer | 2020-05-31 12:17:10 +0300 | |
| commit | 2c0cb510219a27a875628ff4453be2ba7f0a9d7f (patch) | |
| tree | 1a25f25789470ceb09faefb5e0c4b1f8362a5010 | |
| parent | Source: Show aliases on title of command source embed (diff) | |
Source: Include tag into converter's `BadArgument` raising
| -rw-r--r-- | bot/cogs/source.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/source.py b/bot/cogs/source.py index 8fd8cbed4..a3922297a 100644 --- a/bot/cogs/source.py +++ b/bot/cogs/source.py @@ -36,7 +36,7 @@ class SourceConverter(commands.Converter): if cmd: return cmd - raise commands.BadArgument(f"Unable to convert `{argument}` to valid command or Cog.") + raise commands.BadArgument(f"Unable to convert `{argument}` to valid command, tag, or Cog.") class BotSource(commands.Cog): |