mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Import the ordereddict module for Python 2.6
This commit is contained in:
parent
2c9af4784e
commit
8aabee352c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user