Skip to content

Commit

Permalink
Fix import - OrderedDict is no longer in helpers.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Read committed Jun 7, 2016
1 parent 4cb2157 commit 8f29400
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ckanext/qa/reports.py
@@ -1,9 +1,12 @@
from collections import Counter
import copy
try:
from collections import OrderedDict # from python 2.7
except ImportError:
from sqlalchemy.util import OrderedDict

import ckan.model as model
import ckan.plugins as p
from ckan.lib.helpers import OrderedDict
from ckanext.report import lib

import logging
Expand Down

0 comments on commit 8f29400

Please sign in to comment.