diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-04 11:38:14 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-04 11:38:14 -0700 |
commit | 7cd39a6aad5d3e4cb537bf2ab3ec12a1c55c811e (patch) | |
tree | 7948e9dc5afd2fd283cda0796cc72afac251d5b2 /sleekxmpp/plugins/xep_0060/stanza/__init__.py | |
parent | 9ffdba8643ca8e52a30ce227331cd772a5fea6d1 (diff) | |
download | slixmpp-7cd39a6aad5d3e4cb537bf2ab3ec12a1c55c811e.tar.gz slixmpp-7cd39a6aad5d3e4cb537bf2ab3ec12a1c55c811e.tar.bz2 slixmpp-7cd39a6aad5d3e4cb537bf2ab3ec12a1c55c811e.tar.xz slixmpp-7cd39a6aad5d3e4cb537bf2ab3ec12a1c55c811e.zip |
Fix imports for xep_0060
Diffstat (limited to 'sleekxmpp/plugins/xep_0060/stanza/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0060/stanza/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sleekxmpp/plugins/xep_0060/stanza/__init__.py b/sleekxmpp/plugins/xep_0060/stanza/__init__.py index 52a21efe..d7cd91a8 100644 --- a/sleekxmpp/plugins/xep_0060/stanza/__init__.py +++ b/sleekxmpp/plugins/xep_0060/stanza/__init__.py @@ -1,3 +1,3 @@ -from pubsub import Pubsub, Affiliation, Affiliations, Subscription, Subscriptions, SubscribeOptions, Item, Items, Create, Publish, Retract, Unsubscribe, Subscribe, Configure, Options, PubsubState, PubsubStateEvent -from pubsub_owner import PubsubOwner, DefaultConfig, OwnerAffiliations, OwnerAffiliation, OwnerConfigure, OwnerDefault, OwnerDelete, OwnerPurge, OwnerRedirect, OwnerSubscriptions, OwnerSubscription -from pubsub_event import Event, EventItem, EventRetract, EventItems, EventCollection, EventAssociate, EventDisassociate, EventConfiguration, EventPurge, EventSubscription +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 |