Fix errors in examples

This commit is contained in:
Mads Marquart
2020-05-06 11:32:22 +02:00
parent af3758c8a9
commit 0981be42b9
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ def on_message(event):
# We can only kick people from group chats, so no need to try if it's a user chat
if not isinstance(event.thread, fbchat.Group):
return
if message.text == "Remove me!":
if event.message.text == "Remove me!":
print(f"{event.author.id} will be removed from {event.thread.id}")
event.thread.remove_participant(event.author.id)