Fallback to OrderedDict from ordereddict

This commit is contained in:
David Fischer 2014-03-27 13:07:47 +01:00
parent 5e6f015ee3
commit ccf071f9a7

View File

@ -601,6 +601,10 @@ except ImportError:
return klass
if django.VERSION >= (1, 7):
from collections import OrderedDict
try:
from collections import OrderedDict
except ImportError:
# Fall-back to OrderedDict from ordereddict module
from ordereddict import OrderedDict
else:
from django.utils.datastructures import SortedDict as OrderedDict