diff options
| author | Rapptz <[email protected]> | 2018-07-24 03:57:14 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-07-24 04:48:36 -0400 |
| commit | 8d39ab8c8ca041a2d77aa58e12c76c5a3070503e (patch) | |
| tree | 4deb6d611ebc205ca4d71b0dee48a60507a0dabd | |
| parent | Add a warning for self-bots in Client.login (diff) | |
| download | discord.py-8d39ab8c8ca041a2d77aa58e12c76c5a3070503e.tar.xz discord.py-8d39ab8c8ca041a2d77aa58e12c76c5a3070503e.zip | |
Fix dumb typo in the warning.
| -rw-r--r-- | discord/client.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/discord/client.py b/discord/client.py index 95dad1fa..3170afe1 100644 --- a/discord/client.py +++ b/discord/client.py @@ -1,4 +1,4 @@ -l# -*- coding: utf-8 -*- +# -*- coding: utf-8 -*- """ The MIT License (MIT) @@ -327,7 +327,8 @@ class Client: Logging on with a user token is against the Discord `Terms of Service <https://support.discordapp.com/hc/en-us/articles/115002192352>`_ - and doing so might potentially get your account ban. Use this at your own risk. + and doing so might potentially get your account banned. + Use this at your own risk. Parameters ----------- |