From 5435a8a32a2e88675e84d22d6f9b97e67f6f5264 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 31 Jul 2015 10:15:01 +0200 Subject: Use absolute imports In Python 3, implicit relative imports will not be supported. Use fully-qualified imports everywhere. Reviewed-By: Tomas Babej --- ipatests/test_xmlrpc/test_config_plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ipatests/test_xmlrpc/test_config_plugin.py') diff --git a/ipatests/test_xmlrpc/test_config_plugin.py b/ipatests/test_xmlrpc/test_config_plugin.py index 6880d6139..ec31f1305 100644 --- a/ipatests/test_xmlrpc/test_config_plugin.py +++ b/ipatests/test_xmlrpc/test_config_plugin.py @@ -22,7 +22,8 @@ Test the `ipalib/plugins/config.py` module. """ from ipalib import errors -from xmlrpc_test import Declarative, fuzzy_digits, fuzzy_uuid +from ipatests.test_xmlrpc.xmlrpc_test import (Declarative, fuzzy_digits, + fuzzy_uuid) class test_config(Declarative): -- cgit