diff options
author | 2019-09-24 17:21:51 -0400 | |
---|---|---|
committer | 2019-09-24 17:21:51 -0400 | |
commit | 0e7a6a3aa3633aaa21810103d9e963dd995caa45 (patch) | |
tree | 53fe58baf3a0bd2f4f38d4ab1ea4af533c513790 | |
parent | Merge pull request #448 from Akarys42/ot-fix (diff) | |
parent | Note Type Correction (diff) |
Merge pull request #452 from python-discord/hemlock-change-note-type
Note Type Correction
-rw-r--r-- | bot/cogs/moderation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/moderation.py b/bot/cogs/moderation.py index 4d651bef7..f2ff7e6b2 100644 --- a/bot/cogs/moderation.py +++ b/bot/cogs/moderation.py @@ -430,7 +430,7 @@ class Moderation(Scheduler, Cog): This does not send the user a notification """ - infraction = await post_infraction(ctx, user, type="warning", reason=reason, hidden=True) + infraction = await post_infraction(ctx, user, type="note", reason=reason, hidden=True) if infraction is None: return |