aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Sebastiaan Zeeff <[email protected]>2019-07-03 22:01:27 +0200
committerGravatar GitHub <[email protected]>2019-07-03 22:01:27 +0200
commita4e00a3c831360ff3e7bad7e68a29db232a2c306 (patch)
treea19c74b03d1bd79933a1cc11efb4e814ba22406b
parentRemoving last embed responses and unused imports (diff)
Update bot/cogs/watchchannels/watchchannel.py
Co-Authored-By: Mark <[email protected]>
-rw-r--r--bot/cogs/watchchannels/watchchannel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/watchchannels/watchchannel.py b/bot/cogs/watchchannels/watchchannel.py
index b300bb658..7f7efacaa 100644
--- a/bot/cogs/watchchannels/watchchannel.py
+++ b/bot/cogs/watchchannels/watchchannel.py
@@ -341,7 +341,7 @@ class WatchChannel(ABC):
def cog_unload(self) -> None:
"""Takes care of unloading the cog and canceling the consumption task."""
- self.log.trace(f"Unloading {self.__class__._name__} cog")
+ self.log.trace(f"Unloading the cog")
if not self._consume_task.done():
self._consume_task.cancel()
try: