From d1a7d2cad243f41bc4a61f839d2d14d198d00f4f Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 16 Nov 2015 20:52:56 -0500 Subject: [PATCH] Documentation fixes for Client.logs_from --- discord/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/client.py b/discord/client.py index 462161916..3b679f441 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)