blob: eb04d1adc2cea2bf5de2b26856fbfae4e90d17e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
"""
Slixmpp: The Slick XMPP Library
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
This file is part of Slixmpp.
See the file LICENSE for copying permissio
"""
from slixmpp.xmlstream import ElementBase
class Replace(ElementBase):
name = 'replace'
namespace = 'urn:xmpp:message-correct:0'
plugin_attrib = 'replace'
interfaces = set(['id'])
|