diff options
author | Jan Cholasta <jcholast@redhat.com> | 2016-04-20 15:41:34 +0200 |
---|---|---|
committer | Jan Cholasta <jcholast@redhat.com> | 2016-05-25 16:06:26 +0200 |
commit | 9e3c16e322ffc65e7d0799bcfbadec5df0ce1ad6 (patch) | |
tree | 2e23a3d374b4291855cd506375008cbd8f53e627 /ipalib/plugins/automember.py | |
parent | 4b119e21a2f93ca16c5edf3d1058552b44feeaf8 (diff) | |
download | freeipa-9e3c16e322ffc65e7d0799bcfbadec5df0ce1ad6.tar.gz freeipa-9e3c16e322ffc65e7d0799bcfbadec5df0ce1ad6.tar.xz freeipa-9e3c16e322ffc65e7d0799bcfbadec5df0ce1ad6.zip |
ipalib: use relative imports for cross-plugin imports
This will make it possible to move the plugin modules between ipalib,
ipaclient and ipaserver without having to change the imports.
https://fedorahosted.org/freeipa/ticket/4739
Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipalib/plugins/automember.py')
-rw-r--r-- | ipalib/plugins/automember.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/automember.py b/ipalib/plugins/automember.py index a0e33e5be..89b9dfadc 100644 --- a/ipalib/plugins/automember.py +++ b/ipalib/plugins/automember.py @@ -25,7 +25,7 @@ import six from ipalib import api, errors, Str, StrEnum, DNParam, Flag, _, ngettext from ipalib import output, Command from ipalib.plugable import Registry -from ipalib.plugins.baseldap import ( +from .baseldap import ( pkey_to_value, entry_to_dict, LDAPObject, |