aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2015-11-16 20:52:56 -0500
committerRapptz <[email protected]>2015-11-16 20:52:56 -0500
commitd1a7d2cad243f41bc4a61f839d2d14d198d00f4f (patch)
tree93fbb18af243ea9c6d9b16de73d8b6691d5bebf8
parentAdd before and after params to logs_from. (diff)
downloaddiscord.py-d1a7d2cad243f41bc4a61f839d2d14d198d00f4f.tar.xz
discord.py-d1a7d2cad243f41bc4a61f839d2d14d198d00f4f.zip
Documentation fixes for Client.logs_from
-rw-r--r--discord/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/client.py b/discord/client.py
index 46216191..3b679f44 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -835,8 +835,8 @@ class Client(object):
:param channel: The :class:`Channel` to obtain the logs from.
:param limit: The number of messages to retrieve.
- :param before: Message before which all returned messages must be.
- :param after: Message after which all returned messages must be.
+ :param before: :class:`Message` before which all returned messages must be.
+ :param after: :class:`Message` after which all returned messages must be.
"""
url = '{}/{}/messages'.format(endpoints.CHANNELS, channel.id)