diff options
| author | Rapptz <[email protected]> | 2020-04-04 12:45:17 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-04-04 12:45:17 -0400 |
| commit | 481b335f2d3adeef15d003d65966846c60c93b04 (patch) | |
| tree | 12f1a78a50d83f400a4f269ac062334f76fbf28a /discord/client.py | |
| parent | Add support for configuring allowed mentions per message or bot wide. (diff) | |
| download | discord.py-481b335f2d3adeef15d003d65966846c60c93b04.tar.xz discord.py-481b335f2d3adeef15d003d65966846c60c93b04.zip | |
Fix various implementation bugs with allowed mentions
Diffstat (limited to 'discord/client.py')
| -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 bbc323d6..9a673f79 100644 --- a/discord/client.py +++ b/discord/client.py @@ -149,7 +149,7 @@ class Client: A status to start your presence with upon logging on to Discord. activity: Optional[:class:`.BaseActivity`] An activity to start your presence with upon logging on to Discord. - mention: Optional[:class:`AllowedMentions`] + mentions: Optional[:class:`AllowedMentions`] Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4 |