Browse Source

Add missing coroutine decorator to HTTPClient.get_attachment

Fixes #1104
pull/1105/head
Rapptz 7 years ago
parent
commit
6782fdd34d
  1. 1
      discord/http.py

1
discord/http.py

@ -220,6 +220,7 @@ class HTTPClient:
# We've run out of retries, raise.
raise HTTPException(r, data)
@asyncio.coroutine
def get_attachment(self, url):
resp = yield from self._session.get(url)
try:

Loading…
Cancel
Save