diff options
Diffstat (limited to 'ipalib/plugins/aci.py')
-rw-r--r-- | ipalib/plugins/aci.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ipalib/plugins/aci.py b/ipalib/plugins/aci.py index 5aa486db8..8fe382f38 100644 --- a/ipalib/plugins/aci.py +++ b/ipalib/plugins/aci.py @@ -119,6 +119,8 @@ targetattr REPLACES the current attributes, it does not add to them. """ from copy import deepcopy +import six + from ipalib import api, crud, errors from ipalib import Object from ipalib import Flag, Str, StrEnum, DNParam @@ -130,6 +132,9 @@ from ipalib.plugins.baseldap import gen_pkey_only_option, pkey_to_value from ipapython.ipa_log_manager import * from ipapython.dn import DN +if six.PY3: + unicode = str + register = Registry() ACI_NAME_PREFIX_SEP = ":" |