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/jid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slixmpp/jid.py') diff --git a/slixmpp/jid.py b/slixmpp/jid.py index b7ebfbe9..1df7d1f0 100644 --- a/slixmpp/jid.py +++ b/slixmpp/jid.py @@ -22,7 +22,7 @@ import encodings.idna from copy import deepcopy from slixmpp.util import stringprep_profiles -from slixmpp.thirdparty import OrderedDict +from collections import OrderedDict #: These characters are not allowed to appear in a JID. ILLEGAL_CHARS = '\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r' + \ -- cgit v1.2.3