From: =?utf-8?q?Picca_Fr=C3=A9d=C3=A9ric-Emmanuel?= <picca@debian.org>
Date: Wed, 9 Mar 2016 10:44:37 +0100
Subject: fix ordered dict import

---
 lib/taurus/external/ordereddict/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/taurus/external/ordereddict/__init__.py b/lib/taurus/external/ordereddict/__init__.py
index caf0c37..d38bdce 100644
--- a/lib/taurus/external/ordereddict/__init__.py
+++ b/lib/taurus/external/ordereddict/__init__.py
@@ -27,7 +27,7 @@ from __future__ import absolute_import
 
 try:
     # ordereddict from python 2.7 or from ordereddict installed package?
-    from ordereddict import *
+    from collections import OrderedDict
 except ImportError:
     # ordereddict from local import
     import os
