From 4ba5f09ebf706b02f075d9ac96421cb2d3ea92c1 Mon Sep 17 00:00:00 2001 From: grantholly Date: Fri, 22 Apr 2016 14:07:51 -0700 Subject: [PATCH] using relative import to fix and issue with Python 3.4 https://github.com/dyninc/Dynect-API-Python-Library/issues/11 --- dynect/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynect/__init__.py b/dynect/__init__.py index e27a057..477ae8b 100644 --- a/dynect/__init__.py +++ b/dynect/__init__.py @@ -2,4 +2,4 @@ version = '0.1' version_info = (0, 1) -from DynectDNS import DynectRest +from .DynectDNS import DynectRest