diff options
-rw-r--r-- | bot/exts/moderation/modpings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/modpings.py b/bot/exts/moderation/modpings.py index 47bc5e283..c44a16ff6 100644 --- a/bot/exts/moderation/modpings.py +++ b/bot/exts/moderation/modpings.py @@ -93,7 +93,7 @@ class ModPings(Cog): async def remove_role_schedule(self, mod: Member, work_time: int, schedule_start: datetime.datetime) -> None: """Removes the moderator's role to the given moderator.""" - log.trace(f"Removing moderator role to mod with ID {mod.id}") + log.trace(f"Removing moderator role from mod with ID {mod.id}") await mod.remove_roles(self.moderators_role, reason="Moderator schedule time expired.") # Remove the task before scheduling it again |