From 65a37c44dde010ade7440ee2a80bcea4ad71114a Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 10 May 2016 21:31:37 +0200 Subject: Fix a crash in the marquee plugin xml does not like ascii control chars. --- plugins/marquee.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'plugins') diff --git a/plugins/marquee.py b/plugins/marquee.py index e823fb18..78bcc4c9 100644 --- a/plugins/marquee.py +++ b/plugins/marquee.py @@ -36,6 +36,7 @@ Configuration """ from plugin import BasePlugin import tabs +import xhtml from decorators import command_args_parser def move(text, step, spacing): @@ -53,6 +54,7 @@ class Plugin(BasePlugin): @command_args_parser.raw def command_marquee(self, args): tab = self.api.current_tab() + args = xhtml.clean_text(xhtml.convert_simple_to_full_colors(args)) tab.command_say(args) is_muctab = isinstance(tab, tabs.MucTab) msg_id = tab.last_sent_message["id"] -- cgit v1.2.3