mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-10-20 23:42:58 +00:00
Fix introduced potential TypeError with _get_command_error
This commit is contained in:
@@ -498,7 +498,8 @@ def _get_command_error(
|
||||
else:
|
||||
errors = {key: ' '.join(x.get('message', '') for x in inner_errors)}
|
||||
|
||||
messages.extend(f'{indentation} {k}: {v}' for k, v in errors.items())
|
||||
if isinstance(errors, dict):
|
||||
messages.extend(f'{indentation} {k}: {v}' for k, v in errors.items())
|
||||
|
||||
|
||||
class CommandSyncFailure(AppCommandError, HTTPException):
|
||||
|
Reference in New Issue
Block a user