Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofMadejski committed May 30, 2017
1 parent 2cf8e05 commit 2d6130c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ckanext/qa/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
import ckan.model as model
import ckan.plugins as p

# Fix for Kombu 2.5.0 and Python 2.7.11
import uuid
if not hasattr(uuid, '_uuid_generate_random'):
uuid._uuid_generate_random = None

from ckanext.archiver.interfaces import IPipe
from ckanext.qa.logic import action, auth
from ckanext.qa.model import QA, aggregate_qa_for_a_dataset
Expand Down

0 comments on commit 2d6130c

Please sign in to comment.