Make it easier to import OrderedDict

This commit is contained in:
Lance Stout 2011-01-15 17:15:33 -05:00
parent a2891d7608
commit ead3af3135

View file

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