summaryrefslogtreecommitdiff
path: root/plugins/spaces.py
blob: 7885ede6c40dc120fdf672bb44d6db5dc60cdf46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Insert a space between each character, in messages that you send, making
them horrible to read.
"""
from plugin import BasePlugin

class Plugin(BasePlugin):
    def init(self):
        self.api.add_event_handler('muc_say', self.add_spaces)
        self.api.add_event_handler('conversation_say', self.add_spaces)
        self.api.add_event_handler('private_say', self.add_spaces)

    def add_spaces(self, msg, tab):
        msg['body'] = " ".join(x for x in msg['body'])