diff options
| author | Tarek1337 <[email protected]> | 2019-03-08 14:19:38 +0100 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-03-08 21:45:43 -0500 |
| commit | 616616b8470267c8c417c5c3e198623f43932e28 (patch) | |
| tree | 3198e7c1a9804f567d4029b62149814f7c25f526 /discord/http.py | |
| parent | Add support for guild news channels. (diff) | |
| download | discord.py-616616b8470267c8c417c5c3e198623f43932e28.tar.xz discord.py-616616b8470267c8c417c5c3e198623f43932e28.zip | |
Add support for guild descriptions
Diffstat (limited to 'discord/http.py')
| -rw-r--r-- | discord/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/http.py b/discord/http.py index d098a0a4..6b0dcf23 100644 --- a/discord/http.py +++ b/discord/http.py @@ -568,7 +568,7 @@ class HTTPClient: valid_keys = ('name', 'region', 'icon', 'afk_timeout', 'owner_id', 'afk_channel_id', 'splash', 'verification_level', 'system_channel_id', 'default_message_notifications', - 'explicit_content_filter') + 'description', 'explicit_content_filter') payload = { k: v for k, v in fields.items() if k in valid_keys |