diff options
| author | Rapptz <[email protected]> | 2015-12-29 13:58:02 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-12-29 13:58:02 -0500 |
| commit | b4dc9f4b629d1d10527ff298b103eef81a0cd8c9 (patch) | |
| tree | 611ccffb04ae09fad9bd6c52027bb3aa8d43a9bc | |
| parent | Add ability to move members to a different voice channel. (diff) | |
| download | discord.py-b4dc9f4b629d1d10527ff298b103eef81a0cd8c9.tar.xz discord.py-b4dc9f4b629d1d10527ff298b103eef81a0cd8c9.zip | |
Fix indentation error
| -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 82d1e3aa..6d3956c6 100644 --- a/discord/client.py +++ b/discord/client.py @@ -135,7 +135,7 @@ class Client: # These two events correspond to the two events necessary # for a connection to be made self._voice_data_found = asyncio.Event(loop=self.loop) - self._session_id_found = asyncio.Event(loop=self.loop) + self._session_id_found = asyncio.Event(loop=self.loop) # internals |