buffer: Expose the error method from the RoomBuffer.

This commit is contained in:
Damir Jelić 2018-07-14 10:51:15 +02:00
parent 9a3dae6aab
commit 6fc4b0b12c

View file

@ -1066,3 +1066,7 @@ class RoomBuffer(object):
self.old_redacted(event) self.old_redacted(event)
self.sort_messages() self.sort_messages()
def error(self, string):
# type: (str) -> None
self.weechat_buffer.error(string)