blob: 271419690dbcbf9ad776933d0e699bc0fd575786 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from plugin import BasePlugin
class Plugin(BasePlugin):
def init(self):
self.api.add_event_handler('muc_say', self.revstr)
self.api.add_event_handler('conversation_say', self.revstr)
self.api.add_event_handler('private_say', self.revstr)
def revstr(self, msg, tab):
msg['body'] = msg['body'][::-1]
|