From 244988991e01f2309701e5902edc0e5c31a1d360 Mon Sep 17 00:00:00 2001 From: Julien Iguchi-Cartigny Date: Sun, 6 Jul 2014 11:32:55 +0200 Subject: [PATCH] fixing import for python3 in WSDLTools --- wstools/WSDLTools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wstools/WSDLTools.py b/wstools/WSDLTools.py index c341178..4a8a4b2 100644 --- a/wstools/WSDLTools.py +++ b/wstools/WSDLTools.py @@ -15,9 +15,9 @@ try: except ImportError: from cStringIO import StringIO -from Namespaces import OASIS, XMLNS, WSA, WSA_LIST, WSAW_LIST, WSRF_V1_2, WSRF -from Utility import Collection, CollectionNS, DOM, ElementProxy, basejoin -from XMLSchema import XMLSchema, SchemaReader, WSDLToolsAdapter +from .Namespaces import OASIS, XMLNS, WSA, WSA_LIST, WSAW_LIST, WSRF_V1_2, WSRF +from .Utility import Collection, CollectionNS, DOM, ElementProxy, basejoin +from .XMLSchema import XMLSchema, SchemaReader, WSDLToolsAdapter class WSDLReader: