aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorapple502j <[email protected]>2020-09-24 22:00:47 +0900
committerGitHub <[email protected]>2020-09-24 09:00:47 -0400
commitdc6e9e7fd6b6a62bfd21a190f66672ea3d2b5735 (patch)
treed3dfd8fe3c590e74fddcf21ce41a4a61a757db40
parentMore intent documentation. (diff)
downloaddiscord.py-dc6e9e7fd6b6a62bfd21a190f66672ea3d2b5735.tar.xz
discord.py-dc6e9e7fd6b6a62bfd21a190f66672ea3d2b5735.zip
Fix typo in ValueError message
-rw-r--r--discord/state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/state.py b/discord/state.py
index 22966d16..3257d41d 100644
--- a/discord/state.py
+++ b/discord/state.py
@@ -151,7 +151,7 @@ class ConnectionState:
# Ensure these two are set properly
if not intents.members and self._chunk_guilds:
- raise ValueError('Intents.members has be enabled to chunk guilds at startup.')
+ raise ValueError('Intents.members must be enabled to chunk guilds at startup.')
cache_flags = options.get('member_cache_flags', None)
if cache_flags is None: