diff options
| author | Nadir Chowdhury <[email protected]> | 2021-03-02 11:45:24 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-02 06:45:24 -0500 |
| commit | d01500bccd8dd87a96edb62b259856e9fa4c9ec6 (patch) | |
| tree | f7fa58aab3ed5b1f696b5c5f936917f1c455fa05 | |
| parent | Fix Permissions.all_channel documentation to link attributes (diff) | |
| download | discord.py-d01500bccd8dd87a96edb62b259856e9fa4c9ec6.tar.xz discord.py-d01500bccd8dd87a96edb62b259856e9fa4c9ec6.zip | |
Fix typo with guild_discovery_grace_period_final_warning
| -rw-r--r-- | discord/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/message.py b/discord/message.py index d9f9bccb..d89e2a83 100644 --- a/discord/message.py +++ b/discord/message.py @@ -936,7 +936,7 @@ class Message(Hashable): if self.type is MessageType.guild_discovery_grace_period_initial_warning: return 'This server has failed Discovery activity requirements for 1 week. If this server fails for 4 weeks in a row, it will be automatically removed from Discovery.' - if self.type is MessageType.guild_discovery_grave_period_final_warning: + if self.type is MessageType.guild_discovery_grace_period_final_warning: return 'This server has failed Discovery activity requirements for 3 weeks in a row. If this server fails for 1 more week, it will be removed from Discovery.' async def delete(self, *, delay=None): |