From 3c688335af10db87ee59955b25fd97425151cb01 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 1 Apr 2014 23:04:10 +0200 Subject: Fix #2453 (malformed stanzas with stupid plugins) remove xhtml prior to performing stuff --- plugins/capslock.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins/capslock.py') diff --git a/plugins/capslock.py b/plugins/capslock.py index 1b9aafb7..87200ade 100644 --- a/plugins/capslock.py +++ b/plugins/capslock.py @@ -2,6 +2,7 @@ Once loaded, everything you will send will be IN CAPITAL LETTERS. """ from plugin import BasePlugin +import xhtml class Plugin(BasePlugin): def init(self): @@ -10,4 +11,4 @@ class Plugin(BasePlugin): self.api.add_event_handler('private_say', self.caps) def caps(self, msg, tab): - msg['body'] = msg['body'].upper() + msg['body'] = xhtml.clean_text(msg['body']).upper() -- cgit v1.2.3