aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/moderation/watchchannels/_watchchannel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/watchchannels/_watchchannel.py b/bot/exts/moderation/watchchannels/_watchchannel.py
index b576f2888..8894762f3 100644
--- a/bot/exts/moderation/watchchannels/_watchchannel.py
+++ b/bot/exts/moderation/watchchannels/_watchchannel.py
@@ -345,7 +345,7 @@ class WatchChannel(metaclass=CogABCMeta):
def done_callback(task: asyncio.Task) -> None:
"""Send exception when consuming task have been cancelled."""
try:
- task.exception()
+ task.result()
except asyncio.CancelledError:
self.log.error(
f"The consume task of {type(self).__name__} was canceled. Messages may be lost."