Import the ordereddict module for Python 2.6

This commit is contained in:
Murtuza Zabuawala 2017-05-26 12:34:05 -04:00 committed by Dave Page
parent 2c9af4784e
commit 8aabee352c

View File

@ -10,7 +10,10 @@
""" Implemented classes for the different object type used by data grid """
from abc import ABCMeta, abstractmethod
from collections import OrderedDict
try:
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
import six
from flask import render_template
from flask_babel import gettext