summaryrefslogtreecommitdiff
path: root/sleekxmpp/__init__.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2013-08-06 15:54:02 -0700
committerLance Stout <lancestout@gmail.com>2013-08-06 15:54:02 -0700
commite57e321d33a698d90053339d93b19e3c773e487c (patch)
treee246e35a37f380eaf23b61c7097a8b96e828a1c9 /sleekxmpp/__init__.py
parent6401c9aaaafc5bb7541d5475e34191e6f0965313 (diff)
downloadslixmpp-e57e321d33a698d90053339d93b19e3c773e487c.tar.gz
slixmpp-e57e321d33a698d90053339d93b19e3c773e487c.tar.bz2
slixmpp-e57e321d33a698d90053339d93b19e3c773e487c.tar.xz
slixmpp-e57e321d33a698d90053339d93b19e3c773e487c.zip
Try re-ordering initial imports to avoid import bugs
Diffstat (limited to 'sleekxmpp/__init__.py')
-rw-r--r--sleekxmpp/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sleekxmpp/__init__.py b/sleekxmpp/__init__.py
index 8a489a2a..542bb4b6 100644
--- a/sleekxmpp/__init__.py
+++ b/sleekxmpp/__init__.py
@@ -6,14 +6,14 @@
See the file LICENSE for copying permission.
"""
-from sleekxmpp.basexmpp import BaseXMPP
-from sleekxmpp.clientxmpp import ClientXMPP
-from sleekxmpp.componentxmpp import ComponentXMPP
from sleekxmpp.stanza import Message, Presence, Iq
from sleekxmpp.jid import JID, InvalidJID
from sleekxmpp.xmlstream.stanzabase import ET, ElementBase, register_stanza_plugin
from sleekxmpp.xmlstream.handler import *
from sleekxmpp.xmlstream import XMLStream, RestartStream
from sleekxmpp.xmlstream.matcher import *
+from sleekxmpp.basexmpp import BaseXMPP
+from sleekxmpp.clientxmpp import ClientXMPP
+from sleekxmpp.componentxmpp import ComponentXMPP
from sleekxmpp.version import __version__, __version_info__