diff options
author | 2024-02-19 21:35:56 +0000 | |
---|---|---|
committer | 2024-03-04 12:35:02 +0000 | |
commit | ccd94c90d33b7aee85117078576684fab5055ce5 (patch) | |
tree | f54d2e3c71f12fe4613026d5a35ceae4dea4bd5a /pydis_core/utils/interactions.py | |
parent | ruff lint fix: Run remaining auto-fixable rules (diff) |
ruff lint fix: Manual non-breaking changes
Diffstat (limited to 'pydis_core/utils/interactions.py')
-rw-r--r-- | pydis_core/utils/interactions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_core/utils/interactions.py b/pydis_core/utils/interactions.py index 7c5e5101..41b98dc5 100644 --- a/pydis_core/utils/interactions.py +++ b/pydis_core/utils/interactions.py @@ -43,7 +43,7 @@ async def _handle_modify_message(message: Message, action: Literal["edit", "dele elif isinstance(e, NotFound): log.info(f"Could not find message {message.id} when attempting to {action} it.") else: - log.exception(f"Could not {action} message {message.id} due to Discord HTTP error:\n{e!s}") + log.exception(f"Could not {action} message {message.id} due to Discord HTTP error:") class ViewWithUserAndRoleCheck(ui.View): |