summaryrefslogtreecommitdiff
path: root/plugins/revstr.py
blob: d66e64119943aae8baf2e0a13b48e2a01203bbb7 (plain)
1
2
3
4
5
6
7
8
from plugin import BasePlugin

class Plugin(BasePlugin):
    def init(self):
        self.add_event_handler('muc_say', self.revstr)

    def revstr(self, msg, tab):
        msg['body'] = msg['body'][::-1]