summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/old_0004.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-07-19 19:19:33 -0400
committerLance Stout <lancestout@gmail.com>2010-07-19 19:19:33 -0400
commitb5a14a0190f6ea45bfbc0e18a7ff6c61b6415865 (patch)
tree71eefc54a8c1d9586b1e4fb61ebb4b9d46bc2015 /sleekxmpp/plugins/old_0004.py
parentfec8578cf61696d8ca85a6fe85a55be71d7109fd (diff)
downloadslixmpp-b5a14a0190f6ea45bfbc0e18a7ff6c61b6415865.tar.gz
slixmpp-b5a14a0190f6ea45bfbc0e18a7ff6c61b6415865.tar.bz2
slixmpp-b5a14a0190f6ea45bfbc0e18a7ff6c61b6415865.tar.xz
slixmpp-b5a14a0190f6ea45bfbc0e18a7ff6c61b6415865.zip
Can now pass a name to add_handler so that the handler can be reliably removed later.
Updated uses of add_handler to include a name.
Diffstat (limited to 'sleekxmpp/plugins/old_0004.py')
-rw-r--r--sleekxmpp/plugins/old_0004.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/old_0004.py b/sleekxmpp/plugins/old_0004.py
index 263f8b21..2d4203ad 100644
--- a/sleekxmpp/plugins/old_0004.py
+++ b/sleekxmpp/plugins/old_0004.py
@@ -29,7 +29,7 @@ class old_0004(base.base_plugin):
def plugin_init(self):
self.xep = '0004'
self.description = '*Deprecated Data Forms'
- self.xmpp.add_handler("<message><x xmlns='jabber:x:data' /></message>", self.handler_message_xform)
+ self.xmpp.add_handler("<message><x xmlns='jabber:x:data' /></message>", self.handler_message_xform, name='Old Message Form')
def post_init(self):
base.base_plugin.post_init(self)