aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2021-09-04 23:14:15 +0100
committerGravatar GitHub <[email protected]>2021-09-04 22:14:15 +0000
commitb4c7d61361f7ba567e6638d3721f7b3bbcf334d9 (patch)
tree298a58fef4fd648c14295c9a5924ae59ab7600b9
parentMerge pull request #1811 from python-discord/pin-platform-in-Dockerfile (diff)
Server command now uses correct TalentPool attr (#1810)
This was attr changed when we removed the concept of a user being 'watched' while removing the talentpool.
-rw-r--r--bot/exts/info/information.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py
index bcf8c10d2..51d47b75c 100644
--- a/bot/exts/info/information.py
+++ b/bot/exts/info/information.py
@@ -72,7 +72,7 @@ class Information(Cog):
"""Return additional server info only visible in moderation channels."""
talentpool_info = ""
if cog := self.bot.get_cog("Talentpool"):
- talentpool_info = f"Nominated: {len(cog.watched_users)}\n"
+ talentpool_info = f"Nominated: {len(cog.cache)}\n"
bb_info = ""
if cog := self.bot.get_cog("Big Brother"):