diff options
| author | Rapptz <[email protected]> | 2017-12-20 09:45:09 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-12-20 09:45:09 -0500 |
| commit | e2f7945f59f9700103a53700dc02885dc356577e (patch) | |
| tree | dbad32e03e1af47f996da083cb3e3448c342d947 | |
| parent | Add Client.clear to clear the bot's internal state to a clean slate. (diff) | |
| download | discord.py-e2f7945f59f9700103a53700dc02885dc356577e.tar.xz discord.py-e2f7945f59f9700103a53700dc02885dc356577e.zip | |
Proper variable name in Client.clear.
| -rw-r--r-- | discord/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py index 1bc06d90..6be78181 100644 --- a/discord/client.py +++ b/discord/client.py @@ -472,7 +472,7 @@ class Client: self._closed.clear() self._ready.clear() self._connection.clear() - self._http.recreate() + self.http.recreate() @asyncio.coroutine def start(self, *args, **kwargs): |