diff options
| author | Rapptz <[email protected]> | 2017-01-16 16:37:53 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-01-16 16:37:53 -0500 |
| commit | 898a05d5ea7de45a89063dd4aaaaf9ad905b9a8b (patch) | |
| tree | b9ee21081a7ac16d4348dcf21d6ec88ff37a6891 | |
| parent | [commands] Guarantee that local error handler is called before generic. (diff) | |
| download | discord.py-898a05d5ea7de45a89063dd4aaaaf9ad905b9a8b.tar.xz discord.py-898a05d5ea7de45a89063dd4aaaaf9ad905b9a8b.zip | |
Fix AutoShardedClient docstring.
| -rw-r--r-- | discord/shard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/shard.py b/discord/shard.py index 6a447916..e5a6111d 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -90,7 +90,7 @@ class AutoShardedClient(Client): If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from - 0 to ``shard_count - ``\. + 0 to ``shard_count - 1``. Attributes ------------ |