From d422f88fe271dbc6439a71640c06f84e16920afc Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 13 Jan 2021 14:47:54 +0100 Subject: [PATCH] Fix attribute --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27cad24..5b98d71 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ class EchoBot(Bot): if message.type == "groupchat" and "echobot" in message.body: # Parse and reply group chat messages _, to_echo = message.body.split(":") - self.reply(to_echo, room=message.source) + self.reply(to_echo, room=message.room) ``` ## All examples