Fix the build in python 2.6: speeling error

This commit is contained in:
Anthony Sottile 2014-03-23 12:38:32 -07:00
parent 254655e2fd
commit ae1d1681b2
2 changed files with 1 additions and 2 deletions

View file

@ -5,6 +5,6 @@ from __future__ import absolute_import
try:
from collections import OrderedDict
except ImportError:
from orderddict import OrderedDict
from ordereddict import OrderedDict
__all__ = (OrderedDict.__name__,)