diff options
Diffstat (limited to 'plugins/shuffle.py')
-rw-r--r-- | plugins/shuffle.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/shuffle.py b/plugins/shuffle.py index e4fc81c8..3a961bae 100644 --- a/plugins/shuffle.py +++ b/plugins/shuffle.py @@ -4,12 +4,13 @@ Shuffle the words in every message you send in a :ref:`muctab` """ from plugin import BasePlugin from random import shuffle +import xhtml class Plugin(BasePlugin): def init(self): self.api.add_event_handler('muc_say', self.shuffle) def shuffle(self, msg, tab): - split = msg['body'].split() + split = xhtml.clean_text(msg['body']).split() shuffle(split) msg['body'] = ' '.join(split) |