This commit is contained in:
Lance Edgar 2012-04-10 14:21:41 -05:00
commit 17f2dfe1d1
4 changed files with 36 additions and 32 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
from sqlalchemy.orm.attributes import InstrumentedAttribute