diff options
| author | 2021-01-29 22:30:01 +0000 | |
|---|---|---|
| committer | 2021-01-29 22:30:01 +0000 | |
| commit | acc8bcfd2371035b315538d525a7b9231664fd34 (patch) | |
| tree | 065617ef2d2fd6e9907fef9dbfb747f7a584d68d | |
| parent | handle within the error handler (diff) | |
Remove ConversionError from comment, as its now handled above.
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/backend/error_handler.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/backend/error_handler.py b/bot/exts/backend/error_handler.py index 8923a6b3d..ed7962b06 100644 --- a/bot/exts/backend/error_handler.py +++ b/bot/exts/backend/error_handler.py @@ -92,7 +92,7 @@ class ErrorHandler(Cog):                  await self.handle_unexpected_error(ctx, e.original)              return  # Exit early to avoid logging.          elif not isinstance(e, errors.DisabledCommand): -            # ConversionError, MaxConcurrencyReached, ExtensionError +            # MaxConcurrencyReached, ExtensionError              await self.handle_unexpected_error(ctx, e)              return  # Exit early to avoid logging. | 
