summaryrefslogtreecommitdiff
path: root/sleekxmpp/thirdparty/__init__.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-01-19 17:49:39 -0500
committerLance Stout <lancestout@gmail.com>2011-01-19 17:49:39 -0500
commit493df570353fbeff288d6ee61fb0842622443967 (patch)
treebef1f35245d15780c9c195edffaf992aa52cbaf5 /sleekxmpp/thirdparty/__init__.py
parentacc2d071ac5da8e822bd3c63dda640a81e93deec (diff)
downloadslixmpp-493df570353fbeff288d6ee61fb0842622443967.tar.gz
slixmpp-493df570353fbeff288d6ee61fb0842622443967.tar.bz2
slixmpp-493df570353fbeff288d6ee61fb0842622443967.tar.xz
slixmpp-493df570353fbeff288d6ee61fb0842622443967.zip
Fix thirdparty imports for Python3
Diffstat (limited to 'sleekxmpp/thirdparty/__init__.py')
-rw-r--r--sleekxmpp/thirdparty/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/thirdparty/__init__.py b/sleekxmpp/thirdparty/__init__.py
index 4e9d8474..276ac3cc 100644
--- a/sleekxmpp/thirdparty/__init__.py
+++ b/sleekxmpp/thirdparty/__init__.py
@@ -1,4 +1,4 @@
try:
- from ordereddict import OrderedDict
+ from collections import OrderedDict
except:
from sleekxmpp.thirdparty.ordereddict import OrderedDict