incorrect variable name? fixed

how did this happen?
This commit is contained in:
Corban-Lee Jones 2024-04-25 15:04:31 +01:00
parent fcdbf0fde4
commit aa5a75e58a

View File

@ -99,7 +99,7 @@ class GuildsView(View):
status = response.status_code
if status != 200:
log.debug("Bad status code getting guilds: %s", status_code)
log.debug("Bad status code getting guilds: %s", status)
return JsonResponse(content, safe=False, status=status)
valid_guilds = [guild for guild in response.json() if self._has_permissions(guild)]