Fix thirdparty imports for Python3

This commit is contained in:
Lance Stout 2011-01-19 17:49:39 -05:00
parent acc2d071ac
commit 493df57035

View file

@ -1,4 +1,4 @@
try: try:
from ordereddict import OrderedDict from collections import OrderedDict
except: except:
from sleekxmpp.thirdparty.ordereddict import OrderedDict from sleekxmpp.thirdparty.ordereddict import OrderedDict