summaryrefslogtreecommitdiff
path: root/slixmpp/xmlstream/stanzabase.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2014-08-17 21:49:03 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-09-01 02:47:15 +0200
commited37174a2b40d2d90aa6a0c7f778108687d39602 (patch)
tree307a0dd3468f9e7d96ef72676dadd50335efebbf /slixmpp/xmlstream/stanzabase.py
parent866014896091d83164a6503adf9035146cf49963 (diff)
downloadslixmpp-ed37174a2b40d2d90aa6a0c7f778108687d39602.tar.gz
slixmpp-ed37174a2b40d2d90aa6a0c7f778108687d39602.tar.bz2
slixmpp-ed37174a2b40d2d90aa6a0c7f778108687d39602.tar.xz
slixmpp-ed37174a2b40d2d90aa6a0c7f778108687d39602.zip
Always use OrderedDict from collections, and remove its implementation in slixmpp.thirdparty.
Diffstat (limited to 'slixmpp/xmlstream/stanzabase.py')
-rw-r--r--slixmpp/xmlstream/stanzabase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/xmlstream/stanzabase.py b/slixmpp/xmlstream/stanzabase.py
index 8634250f..3f469153 100644
--- a/slixmpp/xmlstream/stanzabase.py
+++ b/slixmpp/xmlstream/stanzabase.py
@@ -21,7 +21,7 @@ from xml.etree import cElementTree as ET
from slixmpp.xmlstream import JID
from slixmpp.xmlstream.tostring import tostring
-from slixmpp.thirdparty import OrderedDict
+from collections import OrderedDict
log = logging.getLogger(__name__)