From 6bac2fd65b1a829cf8fc8b025c35f4b3e50f89ab Mon Sep 17 00:00:00 2001 From: Lonami Date: Thu, 28 Dec 2017 16:31:26 +0100 Subject: [PATCH] .get_message_history doesn't return a tuple anymore --- Sending-Requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sending-Requests.md b/Sending-Requests.md index d88b88c..533f0d6 100644 --- a/Sending-Requests.md +++ b/Sending-Requests.md @@ -31,7 +31,7 @@ client.send_file(myself, '/path/to/the/file.jpg', force_document=True) where = client.download_profile_photo(someone) # Retrieving the message history -total, messages, senders = client.get_message_history(someone) +messages = client.get_message_history(someone) # Downloading the media from a specific message # You can specify either a directory, a filename, or nothing at all