Browse Source

Raise DiscordServerError for 503 Service Unavailable errors

pull/6076/head
Harmon 4 years ago
committed by Rapptz
parent
commit
351a1a1865
  1. 2
      discord/http.py

2
discord/http.py

@ -241,6 +241,8 @@ class HTTPClient:
raise Forbidden(r, data)
elif r.status == 404:
raise NotFound(r, data)
elif r.status == 503:
raise DiscordServerError(r, data)
else:
raise HTTPException(r, data)

Loading…
Cancel
Save