|
From: Picca Frédéric-E. <pi...@de...> - 2016-03-09 10:13:08
|
---
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
|