Browse Source

Prevent AttributeError when closing HTTPClient early.

pull/1959/head
Rapptz 6 years ago
parent
commit
df130e10f0
  1. 3
      discord/http.py

3
discord/http.py

@ -230,7 +230,8 @@ class HTTPClient:
# state management
async def close(self):
await self._session.close()
if self._session:
await self._session.close()
def _token(self, token, *, bot=True):
self.token = token

Loading…
Cancel
Save