summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2015-07-31 10:15:01 +0200
committerTomas Babej <tbabej@redhat.com>2015-08-12 18:17:23 +0200
commit5435a8a32a2e88675e84d22d6f9b97e67f6f5264 (patch)
treebec4d7befefdac6974811d8ce49e35b508d1ecf8 /ipalib/plugable.py
parent262faec70a0cea9c57c24e9b8e6b334a4c715acc (diff)
downloadfreeipa-5435a8a32a2e88675e84d22d6f9b97e67f6f5264.tar.gz
freeipa-5435a8a32a2e88675e84d22d6f9b97e67f6f5264.tar.xz
freeipa-5435a8a32a2e88675e84d22d6f9b97e67f6f5264.zip
Use absolute imports
In Python 3, implicit relative imports will not be supported. Use fully-qualified imports everywhere. Reviewed-By: Tomas Babej <tbabej@redhat.com>
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r--ipalib/plugable.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index 4f33ee374..17c78dce6 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -32,16 +32,16 @@ import threading
import os
from os import path
import optparse
-import errors
import textwrap
import collections
import importlib
-from config import Env
-import text
-from text import _
-from base import ReadOnly, NameSpace, lock, islocked, check_name
-from constants import DEFAULT_CONFIG
+from ipalib import errors
+from ipalib.config import Env
+from ipalib import text
+from ipalib.text import _
+from ipalib.base import ReadOnly, NameSpace, lock, islocked, check_name
+from ipalib.constants import DEFAULT_CONFIG
from ipapython.ipa_log_manager import *
from ipapython.version import VERSION, API_VERSION