aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2019-09-26 20:56:39 -0400
committerGravatar S. Co1 <[email protected]>2019-09-26 21:05:39 -0400
commit2d2fcb0113d22b8bc2023bc1f843687ea9fbb71b (patch)
tree993785828488f3dcdf59c8d2c9ae25b5d3997b28
parentMerge pull request #457 from python-discord/infraction-edit-merge (diff)
Fix incorrect kwargs in watchchannel modlog send
-rw-r--r--bot/cogs/watchchannels/watchchannel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/watchchannels/watchchannel.py b/bot/cogs/watchchannels/watchchannel.py
index 122e3dfe8..ce8014d69 100644
--- a/bot/cogs/watchchannels/watchchannel.py
+++ b/bot/cogs/watchchannels/watchchannel.py
@@ -148,8 +148,8 @@ class WatchChannel(metaclass=CogABCMeta):
title=f"Warning: Failed to retrieve user cache for the {self.__class__.__name__} watch channel",
text="Could not retrieve the list of watched users from the API and messages will not be relayed.",
ping_everyone=True,
- icon=Icons.token_removed,
- color=Color.red()
+ icon_url=Icons.token_removed,
+ colour=Color.red()
)
async def fetch_user_cache(self) -> bool: