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/plugins/xep_0004/stanza/form.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slixmpp/plugins/xep_0004') diff --git a/slixmpp/plugins/xep_0004/stanza/form.py b/slixmpp/plugins/xep_0004/stanza/form.py index 1f900ee6..95e47b4f 100644 --- a/slixmpp/plugins/xep_0004/stanza/form.py +++ b/slixmpp/plugins/xep_0004/stanza/form.py @@ -9,7 +9,7 @@ import copy import logging -from slixmpp.thirdparty import OrderedDict +from collections import OrderedDict from slixmpp.xmlstream import ElementBase, ET from slixmpp.plugins.xep_0004.stanza import FormField -- cgit v1.2.3