Browse Source

Fix documentation example issue.

pull/1/head
Rapptz 10 years ago
parent
commit
59808727ef
  1. 3
      discord/client.py

3
discord/client.py

@ -367,7 +367,8 @@ class Client(object):
for message in client.logs_from(channel):
if message.content.startswith('!hello'):
client.edit_message(message, 'goodbye')
if message.author == client.user:
client.edit_message(message, 'goodbye')
:param channel: The :class:`Channel` to obtain the logs from.

Loading…
Cancel
Save