From 616616b8470267c8c417c5c3e198623f43932e28 Mon Sep 17 00:00:00 2001 From: Tarek1337 Date: Fri, 8 Mar 2019 14:19:38 +0100 Subject: [PATCH] Add support for guild descriptions --- discord/guild.py | 3 +++ discord/http.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/discord/guild.py b/discord/guild.py index 9cf7b5241..122ebb0f7 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -758,6 +758,9 @@ class Guild(Hashable): ---------- name: str The new name of the guild. + description: str + The new description of the guild. This is only available to guilds that + contain `VERIFIED` in :attr:`Guild.features`. icon: bytes A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG supported. Could be ``None`` to denote removal of the icon. diff --git a/discord/http.py b/discord/http.py index d098a0a48..6b0dcf23f 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