diff options
author | Nathan Fritz <nathan@andyet.net> | 2010-04-14 01:23:17 -0700 |
---|---|---|
committer | Nathan Fritz <nathan@andyet.net> | 2010-04-14 01:23:17 -0700 |
commit | 80e7e0d0ee45acf5641f630c0f858a91cbf1a222 (patch) | |
tree | c8dad5af2fcd57c24e7f0ebe2f9284a171a19c1f /sleekxmpp/stanza/iq.py | |
parent | 2f9f649d98682817c900736c6775ba8e5b23060f (diff) | |
download | slixmpp-80e7e0d0ee45acf5641f630c0f858a91cbf1a222.tar.gz slixmpp-80e7e0d0ee45acf5641f630c0f858a91cbf1a222.tar.bz2 slixmpp-80e7e0d0ee45acf5641f630c0f858a91cbf1a222.tar.xz slixmpp-80e7e0d0ee45acf5641f630c0f858a91cbf1a222.zip |
adding tests, fixed stanzapath matching to match keys, fixed pubsub#owner stanzas
Diffstat (limited to 'sleekxmpp/stanza/iq.py')
-rw-r--r-- | sleekxmpp/stanza/iq.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/stanza/iq.py b/sleekxmpp/stanza/iq.py index 8d91c83e..4969b703 100644 --- a/sleekxmpp/stanza/iq.py +++ b/sleekxmpp/stanza/iq.py @@ -16,6 +16,7 @@ class Iq(RootStanza): interfaces = set(('type', 'to', 'from', 'id','query')) types = set(('get', 'result', 'set', 'error')) name = 'iq' + plugin_attrib = name namespace = 'jabber:client' def __init__(self, *args, **kwargs): |