From 6fc4b0b12cd0c189a9a049a4b49b82567f3763de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Sat, 14 Jul 2018 10:51:15 +0200 Subject: [PATCH] buffer: Expose the error method from the RoomBuffer. --- matrix/buffer.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/matrix/buffer.py b/matrix/buffer.py index 44245c0..f882117 100644 --- a/matrix/buffer.py +++ b/matrix/buffer.py @@ -1066,3 +1066,7 @@ class RoomBuffer(object): self.old_redacted(event) self.sort_messages() + + def error(self, string): + # type: (str) -> None + self.weechat_buffer.error(string)