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

View file

@ -83,6 +83,7 @@ if sys.version_info < (2, 7):
# package # low high
'argparse', # 1.2.1
'ordereddict', # 1.1
]