summaryrefslogtreecommitdiff
path: root/slixmpp/jid.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/jid.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/jid.py')
-rw-r--r--slixmpp/jid.py2
1 files changed, 1 insertions, 1 deletions
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' + \