From ed37174a2b40d2d90aa6a0c7f778108687d39602 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 17 Aug 2014 21:49:03 +0200 Subject: Always use OrderedDict from collections, and remove its implementation in slixmpp.thirdparty. --- slixmpp/xmlstream/stanzabase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slixmpp/xmlstream/stanzabase.py') 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__) -- cgit v1.2.3