From 7c00ed80a39e91b4fdbcd383c1d89b33053b309a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Wed, 21 Aug 2019 21:50:40 +0200 Subject: [PATCH] [whiteboard] Fix printing status message --- whiteboard/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whiteboard/plugin.py b/whiteboard/plugin.py index 20ceb13..7c43482 100644 --- a/whiteboard/plugin.py +++ b/whiteboard/plugin.py @@ -349,7 +349,7 @@ class Base(object): self.enable_action(False) if reason: txt = _('Whiteboard stopped: %(reason)s') % {'reason': reason} - self.chat_control.print_conversation(txt, 'info') + self.chat_control.add_status_message(txt) if not self.whiteboard: return hbox = self.chat_control.xml.get_object('chat_control_hbox')