diff --git a/wstools/UserTuple.py b/wstools/UserTuple.py index 02981d0..5851d7a 100644 --- a/wstools/UserTuple.py +++ b/wstools/UserTuple.py @@ -48,6 +48,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # __reduce__, __setattr__, __str__ # What about these? class UserTuple: + def __init__(self, inittuple=None): self.data = () if inittuple is not None: diff --git a/wstools/__init__.py b/wstools/__init__.py index 43417af..6e53c28 100644 --- a/wstools/__init__.py +++ b/wstools/__init__.py @@ -3,6 +3,5 @@ ident = "$Id$" -import WSDLTools -import XMLname -import logging +from . import WSDLTools +from . import XMLname