diff options
author | Lance Stout <lancestout@gmail.com> | 2010-08-12 23:24:09 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-08-12 23:24:09 -0400 |
commit | 4b52007e8c39566bb2083a2e4041de4b294c4948 (patch) | |
tree | 28a7f09d17ec705a19302126644c1fc3af47f26b /sleekxmpp/xmlstream/stanzabase.py | |
parent | 5da7bd1866b6ea2c58055a3aac7d0ed273ed40c6 (diff) | |
download | slixmpp-4b52007e8c39566bb2083a2e4041de4b294c4948.tar.gz slixmpp-4b52007e8c39566bb2083a2e4041de4b294c4948.tar.bz2 slixmpp-4b52007e8c39566bb2083a2e4041de4b294c4948.tar.xz slixmpp-4b52007e8c39566bb2083a2e4041de4b294c4948.zip |
Cleaned stanzabase imports.
Diffstat (limited to 'sleekxmpp/xmlstream/stanzabase.py')
-rw-r--r-- | sleekxmpp/xmlstream/stanzabase.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py index 3b5f0bf4..687fc4f7 100644 --- a/sleekxmpp/xmlstream/stanzabase.py +++ b/sleekxmpp/xmlstream/stanzabase.py @@ -5,13 +5,14 @@ See the file LICENSE for copying permission. """ -from xml.etree import cElementTree as ET + +import copy import logging import sys import weakref -import copy -from . jid import JID +from xml.etree import cElementTree as ET +from sleekxmpp.xmlstream import JID from sleekxmpp.xmlstream.tostring import tostring xmltester = type(ET.Element('xml')) |