diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-31 00:40:33 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-31 00:42:37 -0700 |
commit | 5ec4e4a026a5f3a3ec9c2cb6efd3dc1a4ccf580f (patch) | |
tree | 6daa500d5778ad3cc46c7e39841c4f1e82a39796 /sleekxmpp/plugins/xep_0060/stanza/__init__.py | |
parent | c3df4dd0520a758837e8d9c51d408efc4d8e6a28 (diff) | |
download | slixmpp-5ec4e4a026a5f3a3ec9c2cb6efd3dc1a4ccf580f.tar.gz slixmpp-5ec4e4a026a5f3a3ec9c2cb6efd3dc1a4ccf580f.tar.bz2 slixmpp-5ec4e4a026a5f3a3ec9c2cb6efd3dc1a4ccf580f.tar.xz slixmpp-5ec4e4a026a5f3a3ec9c2cb6efd3dc1a4ccf580f.zip |
Added pubsub error stanza.
iq['error']['pubsub']['condition']
iq['error']['pubsub']['unsupported']
Diffstat (limited to 'sleekxmpp/plugins/xep_0060/stanza/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0060/stanza/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0060/stanza/__init__.py b/sleekxmpp/plugins/xep_0060/stanza/__init__.py index d7cd91a8..e3faf6a8 100644 --- a/sleekxmpp/plugins/xep_0060/stanza/__init__.py +++ b/sleekxmpp/plugins/xep_0060/stanza/__init__.py @@ -1,3 +1,4 @@ from sleekxmpp.plugins.xep_0060.stanza.pubsub import Pubsub, Affiliation, Affiliations, Subscription, Subscriptions, SubscribeOptions, Item, Items, Create, Publish, Retract, Unsubscribe, Subscribe, Configure, Options, PubsubState, PubsubStateEvent from sleekxmpp.plugins.xep_0060.stanza.pubsub_owner import PubsubOwner, DefaultConfig, OwnerAffiliations, OwnerAffiliation, OwnerConfigure, OwnerDefault, OwnerDelete, OwnerPurge, OwnerRedirect, OwnerSubscriptions, OwnerSubscription from sleekxmpp.plugins.xep_0060.stanza.pubsub_event import Event, EventItem, EventRetract, EventItems, EventCollection, EventAssociate, EventDisassociate, EventConfiguration, EventPurge, EventSubscription +from sleekxmpp.plugins.xep_0060.stanza.pubsub_errors import PubsubErrorCondition |