ordereddict fix for python 2.6

This commit is contained in:
Lance Edgar 2012-04-10 14:10:14 -05:00
parent 2829c326ef
commit 5343a81dc8
2 changed files with 5 additions and 1 deletions

View file

@ -26,7 +26,10 @@
``edbob.pyramid.grids`` -- Grid Tables
"""
from collections import OrderedDict
try:
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
from sqlalchemy.orm import Query