aboutsummaryrefslogtreecommitdiffstats
path: root/bot/utils/moderation.py
diff options
context:
space:
mode:
authorGravatar kosayoda <[email protected]>2019-09-14 21:02:01 +0800
committerGravatar kosayoda <[email protected]>2019-09-14 21:02:01 +0800
commitc860b90af9ea554cdf62bd044fbf43c6332c8790 (patch)
tree785d09d9f95dfb54b6a4d1ae5bdbac3df5c65b2e /bot/utils/moderation.py
parentRemove duplicate members passed into team creation command (diff)
parentMake ResponseErrorCode handle non-JSON response (diff)
Merge branch 'django' of github.com:python-discord/bot into django
Diffstat (limited to 'bot/utils/moderation.py')
-rw-r--r--bot/utils/moderation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/utils/moderation.py b/bot/utils/moderation.py
index b295e4649..7860f14a1 100644
--- a/bot/utils/moderation.py
+++ b/bot/utils/moderation.py
@@ -37,7 +37,7 @@ async def post_infraction(
try:
response = await ctx.bot.api_client.post('bot/infractions', json=payload)
except ResponseCodeError as exp:
- if exp.status == 400 and 'user' in exp.response_data:
+ if exp.status == 400 and 'user' in exp.response_json:
log.info(
f"{ctx.author} tried to add a {type} infraction to `{user.id}`, "
"but that user id was not found in the database."