Browse Source

Make reply example a bit more meaningful.

pull/8/head
Rapptz 10 years ago
parent
commit
7b3f31f25c
  1. 2
      examples/reply.py

2
examples/reply.py

@ -6,7 +6,7 @@ client.login('email', 'password')
@client.event
def on_message(message):
if message.content.startswith('!hello'):
client.send_message(message.channel, 'Hello was received!')
client.send_message(message.channel, 'Hello {}!'.format(message.author.mention()))
@client.event
def on_ready():

Loading…
Cancel
Save